How to log in to the backend interface of wordpress
How to log in to the backend interface of wordpress:
First open the website you built with wordpress.
Next, we add wp-login.php or wp-admin to the site URL background to see the login interface. Note here that it is recommended that you use xxx.com/wp-admin to log in to the website, because The spelling of wa-admin is easier to remember for wp-login.php.
Need to remind novice webmasters that there is no default login account and password when WordPress is installed. The administrator account created by WordPress is custom-created by the webmaster. If you forget the password, you need to use the database. Retrieve the password inside. After logging in to phpMyAdmin, first select your database from the left, then click on the SQL tab above, and execute the following command:
UPDATE `wp_users` SET `user_pass`='$P$BWZhQxx/R9UCBgECUhxsV0EKfqfEh31' WHERE `user_login`='wazhuti'
After that, you can use the user name: wazhuti, password: admin and you can start again Login successfully.
For more WordPress technical articles, please visit the WordPress Tutorial column!
The above is the detailed content of How to log into the backend interface of wordpress. For more information, please follow other related articles on the PHP Chinese website!