Created
August 11, 2022 11:06
-
-
Save jchristopher/83ab94a4af761352754dd541d4b16aad to your computer and use it in GitHub Desktop.
Increase the default max limit for OrganizeWP Post Type entry limit
This file contains hidden or 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 | |
// Increase the default max limit for OrganizeWP Post Type entry limit. | |
// @link https://organizewp.com/docs/hooks/organizewp-post_type_entry_max/ | |
add_filter( 'organizewp/post_type_entry_max', function( $max ) { | |
return 5000; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment