Skip to content

Instantly share code, notes, and snippets.

@jdtumala
Created June 21, 2021 14:54
Show Gist options
  • Save jdtumala/5fac886531541d36b45f80a1fe4de42d to your computer and use it in GitHub Desktop.
Save jdtumala/5fac886531541d36b45f80a1fe4de42d to your computer and use it in GitHub Desktop.
/**
* Filter the output of Yoast breadcrumbs to remove <span> tags added by the plugin
* @param $output
*
* @return mixed
*/
function j_filter_yoast_breadcrumb_output( $output ){
$from = '<span>';
$to = '</span>';
$output = str_replace( $from, $to, $output );
return $output;
}
add_filter( 'wpseo_breadcrumb_output', 'j_filter_yoast_breadcrumb_output' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment