Skip to content

Instantly share code, notes, and snippets.

@Roy-Oto
Created May 14, 2021 02:16
How to exclude post tags from wp-sitemap.xml
add_filter(
'wp_sitemaps_taxonomies',
function( $taxonomies ) {
unset( $taxonomies['post_tag'] );
return $taxonomies;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment