• pathel

    (@pathel)


    Is there a way to exclude categories and taxonomies from the WP 6.1 generated sitemap?

Viewing 1 replies (of 1 total)
  • threadi

    (@threadi)

    Try this:

    add_filter('wp_sitemaps_add_provider', function($provider) { if( $provider instanceof WP_Sitemaps_Taxonomies ) { return false; } return $provider; });

Viewing 1 replies (of 1 total)
  • The topic ‘Sitemap WP 6.1’ is closed to new replies.