WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about wp_password_change_notification_email

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/pluggable.php apply_filters 2065 /**
* Filters the contents of the password change notification email sent to the site admin.
*
* @since 4.9.0
*
* @param array $wp_password_change_notification_email {
* Used to build wp_mail().
*
* @type string $to The intended recipient - site admin email address.
* @type string $subject The subject of the email.
* @type string $message The body of the email.
* @type string $headers The headers of the email.
* }
* @param WP_User $user User object for user whose password was changed.
* @param string $blogname The site title.
*/

Hook Parameters

Parameter Type Name Description
array $wp_password_change_notification_emai l {
WP_User $user User object for user whose password was changed.
string $blogname The site title.