Summery Summery
Adds an admin notice alerting the user to check for confirmation request email after email address change.
Syntax Syntax
Source Source
File: wp-includes/user.php
/* translators: New email address notification email subject. %s: Site title. */ wp_mail( $_POST['email'], sprintf( __( '[%s] Email Change Request' ), $sitename ), $content ); $_POST['email'] = $current_user->user_email; } } /** * Adds an admin notice alerting the user to check for confirmation request email * after email address change.
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.9.0 | This function was moved from wp-admin/includes/ms.php so it's no longer Multisite specific. |
3.0.0 | Introduced. |