Code-Snippets-Functions/Execute a function on a child site/All in One SEO Pack/hide-title-from-breadcrumb.txt

9 lines
319 B
Text

// Hide the last crumb if it's a page.
add_filter( 'aioseo_breadcrumbs_show_current_item', 'aioseo_breadcrumbs_show_current_item', 10, 3 );
function aioseo_breadcrumbs_show_current_item( $showCurrentItem, $type, $reference ) {
if ( is_singular( 'page' ) ) {
$showCurrentItem = false;
}
return $showCurrentItem;
}