Skip to content

Instantly share code, notes, and snippets.

@mariusghitulescu
Last active June 12, 2018 16:29
Show Gist options
  • Save mariusghitulescu/2b22f74e1cfbdf29ddd84dc25b75a43c to your computer and use it in GitHub Desktop.
Save mariusghitulescu/2b22f74e1cfbdf29ddd84dc25b75a43c to your computer and use it in GitHub Desktop.
Change the number of entries per sitemap in Yoast SEO
function max_entries_per_sitemap() {
return 1000;
}
add_filter( 'wpseo_sitemap_entries_per_page', 'max_entries_per_sitemap' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment