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

admin2025-05-31  0

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]
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748636031a313686.html

最新回复(0)