Skip to content

Instantly share code, notes, and snippets.

@gaintsev
Created August 6, 2018 11:45
Show Gist options
  • Save gaintsev/5765830cbeef5be9704760c350bf99e3 to your computer and use it in GitHub Desktop.
Save gaintsev/5765830cbeef5be9704760c350bf99e3 to your computer and use it in GitHub Desktop.
Wordpress change admin E-Mail from database
/* 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