Advertisement
verygoodplugins

Untitled

Jun 15th, 2020
868
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. function limit_batch_size( $objects, $args ) {
  2.  
  3.     if ( count( $objects ) > 60000 ) {
  4.         $objects = array_slice( $objects, 0, 60000 );
  5.     }
  6.  
  7.     return $objects;
  8.  
  9. }
  10.  
  11. add_filter( 'wpf_batch_objects', 'limit_batch_size', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement