Skip to content

Instantly share code, notes, and snippets.

@brandonkramer
Last active February 10, 2022 21:03
Show Gist options
  • Save brandonkramer/5694c5e5fdcd9d4e9c9ae63ef869af41 to your computer and use it in GitHub Desktop.
Save brandonkramer/5694c5e5fdcd9d4e9c9ae63ef869af41 to your computer and use it in GitHub Desktop.
A short snippet using the Yoast filter to exclude post types from the Yoast Sitemap.
<?php
add_filter( 'wpseo_sitemap_exclude_post_type', 'your_prefix_exclude_cpt_from_sitemap', 10, 2 );
function your_prefix_exclude_cpt_from_sitemap( $value, $post_type ) {
$post_types_to_exclude = [
'post_type_one',
'post_type_two'
];
if ( in_array($post_type, $post_types_to_exclude) ) {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment