Skip to content

Instantly share code, notes, and snippets.

@ultimatemember
Last active January 17, 2018 07:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ultimatemember/02311172f7b42adeb3ed to your computer and use it in GitHub Desktop.
Save ultimatemember/02311172f7b42adeb3ed to your computer and use it in GitHub Desktop.
Delete display_name usermeta from all users
$users = get_users( array('fields' => 'ID') );
foreach( $users as $user_id ) {
delete_user_meta( $user_id, 'display_name' );
}
@Uranbold
Copy link

How do we update user_meta manually?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment