Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author John Havlik

    (@mtekk)

    Your sidebar recent posts widget is using a custom loop without resetting the $post variable, causing the wrong title. Try calling wp_reset_query() before bcn_display(). The actual URL is produced by taking advantage of browser behavior for the current page, this is changing in 4.0.

    Thread Starter willspencer-1

    (@willspencer-1)

    Path: <?php
    if(function_exists('bcn_display'))
    {
            wp_reset_query();
            bcn_display();
    }

    That fixed it! Thanks!!! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Breadcrumb NavXT] Correct URL, but incorrect anchor text in page link’ is closed to new replies.