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

    (@cybr)

    Hi @process_of_illumination,

    For the reply exclusion, you can use the snippet provided in this issue:
    https://github.com/sybrew/the-seo-framework/issues/307

    I’m going to implement it in the plugin at version 3.1.0.

    The sitemap limits each “post type set” to 1200. This is to prevent crashes on older servers.
    So, there’s a maximum of 1200 posts, pages, and any CPT.

    If you wish to increase this limit, use this snippet:

    add_filter( 'the_seo_framework_sitemap_post_limit', function( $default = 1200 ) {
    	return 2000;
    } );
    

    Both the snippets can be added to your (child) theme’s functions.php file, or a custom plugin.

    Cheers!

    Thread Starter Process of Illumination

    (@process_of_illumination)

    Seems like the kindest Authors make the greatest plugins!

    Thank you very much Sybre, problem solved ??

    It was not even necessary to use the second snippet, all the older topics appeared in the sitemap when all the replies were excluded.

    Again: thanks a lot.

    The Process

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘TSF-generated BBpress Sitemap: issue and question’ is closed to new replies.