Viewing 1 replies (of 1 total)
  • Plugin Author Sybre Waaijer

    (@cybr)

    Hello!

    The sitemap doesn’t support adding additional sitemaps, for that requires a different protocol. It does support custom links:

    add_filter( 'the_seo_framework_sitemap_additional_urls', function( $custom_urls = []) {
    
    	$custom_urls[ 'https://example.com/somepage' ] = [ 'lastmod' => '2021-12-16 10:58' ];
    
    	return $custom_urls;
    } );

    Could you explain why that solution isn’t sufficient?

Viewing 1 replies (of 1 total)
  • The topic ‘Custom Sitemaps’ is closed to new replies.