Skip to content

Instantly share code, notes, and snippets.

@Roy-Oto
Created May 14, 2021 02:18
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