Where is the value for admin_email set?

$email = get_option('admin_email');

How can I change it?

2 Answers
2

In WordPress backend go to: Settings > General and the field ‘Email Address’.

Or in php: update_option(‘admin_email’, ‘your_email@abc.com’);
https://codex.wordpress.org/Function_Reference/update_option

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *