digikev wrote:
It is far simpler to adjust the code that you add into your header.php so it reads:
<?php if (is_home()) {
echo '';
} else {
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','');
}
} ?>
I found that I needed to change the word home — see above example — to front_page because in WP 2.8.2 I have the FRONT PAGE DISPLAYS option set to “A static page” which I then set and WP “turns into” a call for “front_page”. It worked great after I made that one change.
Also, I placed the breadcrumbs in my index.php – you may need to look elsewhere (other than header.php) if your breadcrumbs are not in that file.
I used:
<?php if (is_front_page()) {
echo '';
} else {
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','');
}
} ?>