Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adamrosloniec/230c5346e7a7505429b0d47de8f4291c to your computer and use it in GitHub Desktop.
Save adamrosloniec/230c5346e7a7505429b0d47de8f4291c to your computer and use it in GitHub Desktop.
WordPress - Update admin in SQL, without email notification
function update_admin_email() {
global $wpdb;
$wpdb->query("UPDATE `wp_options` SET `option_value` = 'admin@test.local' WHERE `option_name` = 'admin_email'");
}
add_action('init', 'update_admin_email');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment