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?
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?
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();
}?>You must log in to post.