Skip to content

Instantly share code, notes, and snippets.

@bmdinteractive
Created November 20, 2017 19:30
Show Gist options
  • Save bmdinteractive/bb2dfc0d6a07d9b968f0cc77ea25c950 to your computer and use it in GitHub Desktop.
Save bmdinteractive/bb2dfc0d6a07d9b968f0cc77ea25c950 to your computer and use it in GitHub Desktop.
Removes the current page title from Yoast breadcrumbs
function strip_title_from_breadcrumb_output( $output ){
$output = str_replace( get_the_title(), '', $output );
return $output;
}
add_filter( 'wpseo_breadcrumb_output', 'strip_title_from_breadcrumb_output' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment