On this page
apply_filters( 'send_email_change_email', bool $send, array $user, array $userdata )
Filters whether to send the email change email.
Description
See also
- wp_insert_user() : For
$userand$userdatafields.
Parameters
$sendbool-
Whether to send the email.
$userarray-
The original user array.
$userdataarray-
The updated user array.
More Information
It is part of the wp_update_user() function.
Source
File: wp-includes/user.php. View all references
$send_email_change_email = apply_filters( 'send_email_change_email', true, $user, $userdata );
Related
Used By
| Used By | Description |
|---|---|
| wp_update_user() wp-includes/user.php | Updates a user in the database. |
Changelog
| Version | Description |
|---|---|
| 4.3.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/send_email_change_email