Created
April 4, 2024 18:21
-
-
Save mjones129/fdcfb3acf807aad02c8e9ddcc1fbc87f to your computer and use it in GitHub Desktop.
Update WordPress Admin Email
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
-- display the current admin email | |
select * from wp_options where option_name = 'admin_email'; | |
--update admin email | |
update wp_options set option_value = '[email protected]' where option_name = 'admin_email'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment