mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
6 lines
231 B
Text
6 lines
231 B
Text
add_filter( 'slim_seo_breadcrumbs_links', function( $links ) {
|
|
if ( is_singular( 'post' ) ) {
|
|
unset( $links[1] ); // $link[0] = Home, $link[1] = Blog, $link[2] = Category, $link[3] = Post.
|
|
}
|
|
return $links;
|
|
} );
|