Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mariusghitulescu/1fd5418b07e6fbe5c30ac14ed256a756 to your computer and use it in GitHub Desktop.
Save mariusghitulescu/1fd5418b07e6fbe5c30ac14ed256a756 to your computer and use it in GitHub Desktop.
add_filter( 'wpseo_breadcrumb_links', 'jj_wpseo_breadcrumb_links' );
function jj_wpseo_breadcrumb_links( $links ) {
//pk_print( sizeof($links) );
if( sizeof($links) > 1 ){
array_pop($links);
}
return $links;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment