mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
Yoast SEO defaults to 1000 https://kb.yoast.com/kb/enable-xml-sitemaps-in-the-wordpress-seo-plugin/
5 lines
131 B
Text
5 lines
131 B
Text
function max_entries_per_sitemap() {
|
|
return 100;
|
|
}
|
|
|
|
add_filter( 'wpseo_sitemap_entries_per_page', 'max_entries_per_sitemap' );
|