WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about retrieve_password_notification_email

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/user.php apply_filters 3233 /**
* Filters the contents of the reset password notification email sent to the user.
*
* @since 6.0.0
*
* @param array $defaults {
* The default notification email arguments. Used to build wp_mail().
*
* @type string $to The intended recipient - user 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.
* }
* @type string $key The activation key.
* @type string $user_login The username for the user.
* @type WP_User $user_data WP_User object.
*/

Hook Parameters

Parameter Type Name Description
array $default s {