Adding Custom Sitemap To Sitemap Index
-
I have 2 sitemaps that are not generated by wordpress, but are part of my main website. I know i could add them to webmaster tools separately, but id like to keep all of my sitemaps in the index as it makes most sense to do this.
Ive tried the following code and it doesnt seem to add anything to the sitemap.
add_action(‘init’, ‘enable_custom_sitemap’);
function enable_custom_sitemap(){
global $wpseo_sitemaps;
$wpseo_sitemaps->register_sitemap(‘xml’, ‘sitemaps/text.xml’);
}
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Adding Custom Sitemap To Sitemap Index’ is closed to new replies.