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