Remove the title from the last post title from the breadcrumb in Yoast SEO

Remove the title from the last post title from the breadcrumb in Yoast SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter('wpseo_breadcrumb_single_link', 'remove_breadcrumb_title' );
function remove_breadcrumb_title( $link_output) {
	if(strpos( $link_output, 'breadcrumb_last' ) !== false ) {
		$link_output = '';
	}
   	return $link_output;
}

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