Maalesef işe yaramadı. Bu nasıl bir eklenti ...


alperenalpa adlı üyeden alıntı: mesajı görüntüle
Selamlar,
Temanızın functions.php dosyasına

add_filter( 'rank_math/sitemap/exclude_post_type', function( $excluded_post_types ) {
    $excluded_post_types[] = 'cms_block';
    $excluded_post_types[] = 'woodmart_slide';
    return $excluded_post_types;
});
ekler misiniz
isa_Aktar adlı üyeden alıntı: mesajı görüntüle
Hala devam ederse; functions.php'ye aşağıda verdiğim kodu gir

add_filter( 'wp_sitemaps_post_types', function( $post_types ) {
unset( $post_types['cms_block'] );
unset( $post_types['woodmart_slide'] );
return $post_types;
});