-
Hello there,
I would like to hide the Breadcrumb bar on pages/posts where only one item would be shown.I tried by my own with the filter below, but the Breadcrumb bar is still displayed when I check the HTML source code – even if the array is empty.
add_filter(‘rank_math/frontend/breadcrumb/items’, function ($crumbs, $class) {
if (!empty($crumbs) && is_array($crumbs)):
if (count($crumbs) > 1):
return $crumbs;
endif;
endif;unset($crumbs[0]);
//print_r($crumbs);
return array_values($crumbs);
}, 10, 2);
The ticket ‘Hide Breadcrumb if only one item is available’ is closed to new replies.