apply_filters( 'send_password_change_email', bool $send, array $user, array $userdata )

Filters whether to send the password change email.


Description

Top ↑

See also


Top ↑

Parameters

$send bool
Whether to send the email.
$user array
The original user array.
$userdata array
The updated user array.

Top ↑

Source

File: wp-includes/user.php. View all references

$send_password_change_email = apply_filters( 'send_password_change_email', true, $user, $userdata );


Top ↑

Changelog

Changelog
Version Description
4.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.