Created
August 6, 2018 11:45
-
-
Save gaintsev/5765830cbeef5be9704760c350bf99e3 to your computer and use it in GitHub Desktop.
Wordpress change admin E-Mail from database
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
/* Options table: */ | |
UPDATE wp_options SET option_value = '[email protected]' WHERE option_name = 'admin_email'; | |
/* Users table: */ | |
UPDATE wp_users SET user_email = '[email protected]' WHERE user_login = 'admin'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment