-
-
Save tbartels/4045376 to your computer and use it in GitHub Desktop.
Update WP user_login via SQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Force update our username (user_login) | |
global $wpdb; | |
// method 1 | |
#$sql = $wpdb->prepare("UPDATE {$wpdb->users} SET user_login = %s WHERE ID = %d", $user_email, $user_id); | |
#$wpdb->query($sql); | |
// method 2 | |
$wpdb->update($wpdb->users, array('user_login' => $user_email), array('ID' => $user_id)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can't use %s for table names or they'll get quoted:
"UPDATE 'wp_users' SET user_login='[email protected]' WHERE ID=1"
which would not work.