Remove "Home" link from Yoast WordPress SEO's breadcrumbs
// Remove "Home" link from Yoast WordPress SEO's breadcrumbs
function wpseo_remove_home_breadcrumb($links) {
if ( $links[0]['url'] == home_url('/') ) { array_shift($links); }
return $links;
}
add_filter('wpseo_breadcrumb_links', 'wpseo_remove_home_breadcrumb');