Exclude multiple post types from sitemap
-
I can only seem to exclude only one post type via the
wpseo_sitemap_exclude_post_type
filter. Is there a way to do multiple?Is there a way to repeat this or include more post types in a single call?
function exclude_eu_posts( $excluded, $post_type ) { return $post_type === 'post'; } add_filter( 'wpseo_sitemap_exclude_post_type', 'exclude_eu_posts', 10, 2 );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Exclude multiple post types from sitemap’ is closed to new replies.