Remove blog from breadcrumbs for posts in Slim SEO

Remove blog from breadcrumbs for posts in Slim SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

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;
} );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.