Skip to content

Instantly share code, notes, and snippets.

@mjones129
Created April 4, 2024 18:21
Show Gist options
  • Save mjones129/fdcfb3acf807aad02c8e9ddcc1fbc87f to your computer and use it in GitHub Desktop.
Save mjones129/fdcfb3acf807aad02c8e9ddcc1fbc87f to your computer and use it in GitHub Desktop.
Update WordPress Admin Email
-- display the current admin email
select * from wp_options where option_name = 'admin_email';
--update admin email
update wp_options set option_value = 'newadmin@example.com' where option_name = 'admin_email';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment