Skip to main content
Login Join
Snippet · PHP

Remove Post Title From Yoast Breadcrumbs

Shared by Nazim Husain · May 1, 2026

14 views
4 upvotes
Back to Snippets
// Remove post title from Yoast breadcrumbs
add_filter('wpseo_breadcrumb_single_link', function( $link_output) {
	if( strpos( $link_output, 'breadcrumb_last' ) !== false ) {
		$link_output = '';
	}
	return $link_output;
} );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments