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