Using WordPress PHP code, how to bulk delete 100 subscribers at a time?
-
Hi there
Using WordPress PHP code, how to bulk delete ONLY 100 subscribers at a time from thousands of users?
(The following code tries to delete all 50k users at once and my server hangs. If I can delete only 100 users at a time then I can use a Cron job every 5 minutes.)
<?php
$blogusers = get_users( ‘role=subscriber’ );
// Array of WP_User objects.
foreach ( $blogusers as $user ) {
$user_id = $user->ID;
wp_delete_user( $user_id );
}Thanks.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Using WordPress PHP code, how to bulk delete 100 subscribers at a time?’ is closed to new replies.