Created
August 8, 2023 16:19
-
-
Save amboutwe/b6a6645f127fe75ccae55c7b07bb9c5f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Change the pagination limit for the Yoast SEO bulk editor | |
* Credit: https://github.com/emmelemme | |
* Last Tested: Aug 08 2023 using Yoast SEO 20.12 on WordPress 6.2.2 | |
* Default = 10 items per page | |
*/ | |
add_filter('wpseo_posts_per_page', function($number){ | |
return 20; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment