wp_password_change_notification_email filter-hookWP 4.9.0

Filters the contents of the password change notification email sent to the site admin.

Usage

add_filter( 'wp_password_change_notification_email', 'wp_kama_password_change_notification_email_filter', 10, 3 );

/**
 * Function for `wp_password_change_notification_email` filter-hook.
 * 
 * @param array   $wp_password_change_notification_email Used to build wp_mail().
 * @param WP_User $user                                  User object for user whose password was changed.
 * @param string  $blogname                              The site title.
 *
 * @return array
 */
function wp_kama_password_change_notification_email_filter( $wp_password_change_notification_email, $user, $blogname ){

	// filter...
	return $wp_password_change_notification_email;
}
$wp_password_change_notification_email(array)

Used to build wp_mail().

  • to(string)
    The intended recipient - site admin email address.

  • subject(string)
    The subject of the email.

  • message(string)
    The body of the email.

  • headers(string)
    The headers of the email.
$user(WP_User)
User object for user whose password was changed.
$blogname(string)
The site title.

Changelog

Since 4.9.0 Introduced.

Where the hook is called

wp_password_change_notification()
wp_password_change_notification_email
wp-includes/pluggable.php 2098
$wp_password_change_notification_email = apply_filters( 'wp_password_change_notification_email', $wp_password_change_notification_email, $user, $blogname );

Where the hook is used in WordPress

Usage not found.