Looking to remove the wp-sitemap.xml introduced in WordPress 5.5? Here’s a quick and easy solution on how to disable this.
1 answers
1
Removing wp-sitemap.xml
In order to remove wp-sitemap.xml from your website, add the following code to your functions.php file.
add_filter( 'wp_sitemaps_enabled', '__return_false' );
— Support WizardAnswer 1