$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>admin - Removing Administration Email Address email from the settings, without requiring confirmation|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

admin - Removing Administration Email Address email from the settings, without requiring confirmation

matteradmin11PV0评论

After providing admin support for several prototype websites, with my email used as the "Administration Email Address", I'm no longer required for support, however I have no confidence that the site owner (largely inactive, when it comes to site management, and not interested in receiving admin emails) will confirm any email change, so I just want to remove my email address from the site settings so that I stop receiving emails.

Is there any way to do this through the admin dashboard using standard features, or would I need a custom plugin?

The Settings > General page says "If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed."

After providing admin support for several prototype websites, with my email used as the "Administration Email Address", I'm no longer required for support, however I have no confidence that the site owner (largely inactive, when it comes to site management, and not interested in receiving admin emails) will confirm any email change, so I just want to remove my email address from the site settings so that I stop receiving emails.

Is there any way to do this through the admin dashboard using standard features, or would I need a custom plugin?

The Settings > General page says "If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed."

Share Improve this question asked Apr 28 at 22:56 Highly IrregularHighly Irregular 2234 silver badges10 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 1

You can update this through the database (wp_options) table.

The option_name is called "admin_email"

If you have WP CLI access (sometimes even shared hosting services provide this), you can use this command to replace all occurences of the e-mail adress:

wp search-replace '[email protected]' '[email protected]' --all-tables

Be sure to delete your user before running this.

If you only want to change the admin e-mail, and nothing else, use this command:

wp option update admin_email [email protected]
Post a comment

comment list (0)

  1. No comments so far