Include non WordPress categories and pages in main sitemap
-
Hi!
I need to add some NOT WordPress categories and pages in my site’s sitemap.
I have created a function that uses the ‘wpseo_sitemap_index’ filter but that does not seem to work.This is my code:
function add_sitemap_ec_items(){ $sitemap_custom_items = '<sitemap> <loc>https://my.devsite.com/product_cat-sitemap.xml</loc> <lastmod>2016-12-18T23:12:27+00:00</lastmod> </sitemap> <sitemap> <loc>https://my.devsite.com/product-sitemap1.xml</loc> <lastmod>2016-12-18T23:12:27+00:00</lastmod> </sitemap> <sitemap> <loc>https://my.devsite.com/product-sitemap2.xml</loc> <lastmod>2016-12-18T23:12:27+00:00</lastmod> </sitemap>'; return $sitemap_custom_items; } add_filter( 'wpseo_sitemap_index', 'add_sitemap_ec_items' );
Any suggestions?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Include non WordPress categories and pages in main sitemap’ is closed to new replies.