Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created August 11, 2022 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/83ab94a4af761352754dd541d4b16aad to your computer and use it in GitHub Desktop.
Save jchristopher/83ab94a4af761352754dd541d4b16aad to your computer and use it in GitHub Desktop.
Increase the default max limit for OrganizeWP Post Type entry limit
<?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