Exclude a post type from XML sitemap in Yoast SEO

Exclude a post type from XML sitemap in Yoast SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

function sitemap_exclude_post_type( $excluded, $post_type ) {
    return $post_type === 'recipes';
}

add_filter( 'wpseo_sitemap_exclude_post_type', 'sitemap_exclude_post_type', 10, 2 );

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