Add in the function.php of your theme
[php]
add_filter(‘wpseo_breadcrumb_single_link’ ,’timersys_remove_companies’, 10 ,2);
function timersys_remove_companies($link_output, $link ){
if( $link[‘text’] == ‘Companies’ ) {
$link_output = ”;
}
return $link_output;
}
[/php]
Change the phrase Companies to remove.
Finish!





