breadcrumbs- "Home" is showing on homepage
-
hey,
im using thesis 1.8 and having trouble with the breadcrumbs. when im on the home page the HOME trail shows up, i want to disable it so i only shows up once a user goes into the categories, pages etc.
this is the code…….
function thesis_breadcrumbs() {
echo ‘<a href=”‘;
echo get_option(‘home’);
echo ‘”>’;
echo ‘Home’;
echo “”;
if (is_category() || is_single()) {
echo ” » “;
the_category(‘ • ‘);
if (is_single()) {
echo ” » “;
the_title();
}
} elseif (is_page()) {
echo ” » “;
echo the_title();
} elseif (is_search()) {
echo ” » Search Results for… “;
echo ‘”‘;
echo the_search_query();
echo ‘“‘;
}
}
function display_breadcrumbs() {
?><div class=”breadcrumbs”><?php thesis_breadcrumbs(); ?></div><?php
}add_action(‘thesis_hook_after_header’,’display_breadcrumbs’);
any help is appreciated
- The topic ‘breadcrumbs- "Home" is showing on homepage’ is closed to new replies.