Forums

Breadcrumb NavXT
disable breadcrumbs on a particular page (2 posts)

  1. Billmcq
    Member
    Posted 3 months ago #

    How can I set this up not to show the breadcrumbs on a particular page number. Maybe a function in the functions file? What would it be though?

    http://wordpress.org/extend/plugins/breadcrumb-navxt/

  2. mtekk
    Member
    Posted 3 months ago #

    On a certian page number as in a specific page id? If so, modify the condition within the if statement wrapped around the calling code to check the is_page function. E.g. the below code will not output a breadcrumb on page ID 1, 22, 91, and 120

    <?php if(function_exists('bcn_display') && !is_page(array(1, 33, 91, 120)))
        {
            bcn_display();
        }?>

Reply

You must log in to post.

About this Plugin

About this Topic