Skip to content

Instantly share code, notes, and snippets.

@Roy-Oto
Created May 14, 2021 02:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Roy-Oto/f330d2b303c1a0e2a96c364ae7b7e47f to your computer and use it in GitHub Desktop.
Save Roy-Oto/f330d2b303c1a0e2a96c364ae7b7e47f to your computer and use it in GitHub Desktop.
How to exclude pages from wp-sitemap.xml
add_filter(
'wp_sitemaps_post_types',
function( $post_types ) {
unset( $post_types['page'] );
return $post_types;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment