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

    (@cybr)

    Hi wbxpress,

    The sitemap is consumed by Search Engines to find new posts, so old posts don’t have to be in it.

    If however you have the server resources, feel free to up the number within the Sitemap. This can be done through a filter:

    add_filter( 'the_seo_framework_sitemap_post_limit', 'my_sitemap_post_limit' );
    function my_sitemap_post_limit( $current = 700 ) {
    	return 3000;
    }

    This snippet will make it possible to contain 9000 links in total, as it’s 3000 Posts, 3000 Pages and 3000 CPT. You can up it to a much higher value if you wish.

    If you require assistance implementing filters, please refer to this guide.

    I hope this helps!

    Thread Starter wbxpress

    (@wbxpress)

    Thank you very much. Now it is working perfect.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Link Count in Sitemap is Much Lower’ is closed to new replies.