mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
5 lines
187 B
Text
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 );
|