In the process of WordPress use, some users are deleted, ID is empty, then want to register behind the user, use these unoccupied ID, how do we go to modify it? Then this article, will introduce the following if you modify the WordPress user ID.
Just add the code to the funtions file and you're all set.
Add the following code to the current theme functions.php filein (Path /wp-content/themes/your-theme-name/funtions.php) The following code is added to the bottom of the file, below:
global $wpdb;$wpdb->query("UPDATE wp_users SET ID = 1 WHERE ID = 2");$wpdb->query("UPDATE wp_usermeta SET user_id = 1 WHERE user_id = 2");$wpdb->query("UPDATE wp_posts SET post_author = 1 WHERE post_author = 2");$wpdb->query("UPDATE wp_comments SET user_id = 1 WHERE user_id = 2");global $wpdb; $wpdb->query("UPDATE wp_users SET ID = 1 WHERE ID = 2"); $wpdb->query("UPDATE wp_usermeta SET user_id = 1 WHERE user_id = 2"); $wpdb->query("UPDATE wp_posts SET post_author = 1 WHERE post_author = 2"); $wpdb->query("UPDATE wp_comments SET user_id = 1 WHERE user_id = 2");global $wpdb; $wpdb->query("UPDATE wp_users SET ID = 1 WHERE ID = 2"); $wpdb->query("UPDATE wp_usermeta SET user_id = 1 WHERE user_id = 2"); $wpdb->query("UPDATE wp_posts SET post_author = 1 WHERE post_author = 2"); $wpdb->query("UPDATE wp_comments SET user_id = 1 WHERE user_id = 2");
![Image [1] - How to change WordPress user ID - Photon Flux | Professional WordPress repair service, worldwide, fast response](https://www.361sale.com/wp-content/uploads/2024/04/Sunny_20240416_152933.png)
This code is to change the user ID of 2 to ID 1. You can change the corresponding ID number according to the realization.
Refresh the page and see if the Admin User ID changes to 1.
After modification, remove the code, there is no need to leave it in the theme.
draw attention to sth.: Please do this before modifyingDatabase BackupJust in case!
![Image [2] - How to change WordPress user ID - Photon Flux | Professional WordPress repair service, worldwide, rapid response](https://www.361sale.com/wp-content/uploads/2024/04/image-608.png)
Link to this article:https://www.361sale.com/en/7-2
The article is copyrighted and must be reproduced with attribution.
No comments