Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function limit_batch_size( $objects, $args ) {
- if ( count( $objects ) > 60000 ) {
- $objects = array_slice( $objects, 0, 60000 );
- }
- return $objects;
- }
- add_filter( 'wpf_batch_objects', 'limit_batch_size', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement