Last active
February 25, 2016 23:46
-
-
Save QROkes/62e07eb167089c366ab9 to your computer and use it in GitHub Desktop.
Some functions to modify Yoast SEO breadcrumbs. (WordPress)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add an element after "Home" to Yoast SEO breadcrumbs. (WordPress) | |
add_filter( 'wpseo_breadcrumb_links', 'qr_add_breadcrumb' ); | |
function qr_add_breadcrumb( $links ) { | |
$breadcrumb[] = array( | |
'url' => 'URL', | |
'text' => 'Text', | |
); | |
array_splice( $links, 1, -2, $breadcrumb ); | |
return $links; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Remove "Home" link from Yoast SEO breadcrumbs. (WordPress) | |
add_filter('wpseo_breadcrumb_links', 'qr_remove_home_breadcrumb'); | |
function qr_remove_home_breadcrumb($links) { | |
if ($links[0]['url'] == get_home_url()) { array_shift($links); } | |
return $links; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment