Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mariusghitulescu/ee1f365c48fc9866439d4400d639e2f7 to your computer and use it in GitHub Desktop.
Save mariusghitulescu/ee1f365c48fc9866439d4400d639e2f7 to your computer and use it in GitHub Desktop.
Exclude post type from sitemap
/* Exclude One Content Type From Yoast SEO Sitemap */
function sitemap_exclude_post_type( $value, $post_type ) {
if ( $post_type == 'post_type_slug' ) return true;
}
add_filter( 'wpseo_sitemap_exclude_post_type', 'sitemap_exclude_post_type', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment