• I am working on a site that someone else built. The breadcrumbs display the same blog title no matter which blog entry a user clicks on.

    For example:
    Users clicks on blog article #9 , breadcrumbs say “You Are Here: Page/Category/blog article #1”

    Users clicks on ANY blog#, breadcrumbs say “You Are Here: Page/Category/blog article #1”

    How do I fix this?

    http://wordpress.org/extend/plugins/breadcrumbs/

Viewing 1 replies (of 1 total)
  • savyizzy

    (@savyizzy)

    Try this one.
    Call wp_reset_query() before yoast_breadcrumb().

    <?php
    if (!is_front_page()) {
    if ( function_exists(‘yoast_breadcrumb’) ) {
    wp_reset_query();
    yoast_breadcrumb(‘<div id=”breadcrumbs”>’,'</div>’);
    }
    }
    ?>

    It worked for me.

Viewing 1 replies (of 1 total)
  • The topic ‘all breadcrumbs display same post title regardless of title clicked’ is closed to new replies.