Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
Last active September 9, 2025 09:20
Show Gist options
  • Save wp-seopress/1c10c06888ff7d7bf30d516968c30382 to your computer and use it in GitHub Desktop.
Save wp-seopress/1c10c06888ff7d7bf30d516968c30382 to your computer and use it in GitHub Desktop.
Limit the number of posts for the XML index sitemaps
add_filter('seopress_sitemaps_index_post_types_query','sp_sitemaps_index_post_types_query', 10, 2);
function sp_sitemaps_index_post_types_query($args, $cpt_key){
$args = [
'posts_per_page' => 10000,
];
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment