Advertisement
verygoodplugins

Untitled

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