Hide the title in breadcrumbs in All in One SEO

Hide the title in breadcrumbs in All in One SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

// 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;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.