Removing 'page' link separator from breadcrumb trail
-
Hello,
Im trying to filter out a page link from the breadcrumb trail on a website. I’ve managed to delete it by adding this to the functions.php file:
function wpseo_remove_home_breadcrumb($links) { if ($links[0]['pageurl'] == get_home_url()) { array_shift($links); } return $links; } add_filter('wpseo_breadcrumb_links', 'wpseo_remove_home_breadcrumb');
It deletes the link but the separator is still there, resulting in:
home//page
Is there a way to also remove the double separator?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Removing 'page' link separator from breadcrumb trail’ is closed to new replies.