Skip to content

Instantly share code, notes, and snippets.

@trvswgnr
Created August 15, 2020 22:10
Show Gist options
  • Save trvswgnr/265387a0a70def20633a66b5e22a6c21 to your computer and use it in GitHub Desktop.
Save trvswgnr/265387a0a70def20633a66b5e22a6c21 to your computer and use it in GitHub Desktop.
WordPress - Update All Users
<?php
function taw_update_all_users() {
$users = get_users();
foreach ( $users as $user ) {
wp_update_user( array( 'ID' => $user->ID ) );
}
}
add_action('admin_init', 'taw_update_all_users');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment