Function.php ekleyip engellemek için kodlar buldum ama başarılı olamadım. Bu Shop Kısmını Nasıl engellerim breadcrumbs kısmında.

add_filter( 'wpseo_breadcrumb_links' ,'wpseo_remove_breadcrumb_link', 10 );

function wpseo_remove_breadcrumb_link( $links ){
    // Remove all breadcrumbs that have the text: Shop.
    $new_links = array_filter( $links, function ( $link ) { return $link['text'] !== 'Shop'; } );
 
    // Reset array keys.
    return array_values( $new_links );
}