Hi, sorry the late reply.
I haven’t tested this, but the plugin is not supposed to do any changes on xml or xsl files. A XSL file is a template file. It should not matter for the XML file except if you are seeing it on a browser, where a template may be needed.
I’ll try to get this extension excluded on the next update release anyway.
Thank you for reporting
I found a workaround to disable the XML stylesheets
add_filter('wp_sitemaps_stylesheet_index_url', sitemap_stylesheet_index_url, 10, 1);
add_filter('wp_sitemaps_stylesheet_url',sitemap_stylesheet_url, 10, 1);
function sitemap_stylesheet_index_url($sitemap_url) {
return false;
}
function sitemap_stylesheet_url($sitemap_url) {
return false;
}
The latest version should no longer process xsl files. Thanks