Code-Snippets-Functions/Execute a function on a child site/Yoast SEO/exclude-post-type-sitemap-xml.txt

5 lines
187 B
Text

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