Hello all.
I've just edited my functions.php in order to show breadcrumbs right after the <div id="content">
.
This is the code:
function disform_addbreadcrumbs() {
if(function_exists('bcn_display')) {
echo('<div id="breadcrumb-navxt">');
bcn_display();
echo('</div>');
}
}
add_action ('thematic_navigation_above','disform_addbreadcrumbs',1);
add_action ('thematic_abovepagetop','disform_addbreadcrumbs',1);
Now, this will work on page.php, index.php and single.php, but I wonder how can I do the same in all other pages (archive.php, archives.php, etc...).
I don't find the right hook/action to use.