Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of modifying WordPress user ID

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

How to modify WordPress user ID? This problem may be often seen in our daily study or work. I hope you can gain a lot from this question. The following is the reference content that the editor brings to you, let's take a look at it!

Modify WordPress user ID

Sometimes because the login name of the default user when installing WordPress cannot be changed, the default user is deleted and a new administrative user is created, but the new account ID is not 1, which makes it uncomfortable. You can modify the user ID through the following methods.

Add the following code to the current theme function template functions.php:

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")

In this example, the user whose ID is 2 is changed to ID 1, and the corresponding ID number can be modified according to the implementation.

Refresh the page to see if the administrative user ID has become 1.

After modification, the code is removed and there is no need to leave it in the topic.

Thank you for reading! After reading the above, do you have a general idea of how to modify the ID of WordPress users? I hope the content of the article will be helpful to all of you. If you want to know more about the relevant articles, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report