apply_filters( 'retrieve_password_title', string $title, string $user_login, WP_User $user_data )

Filters the subject of the password reset email.


Parameters

$title string
Email subject.
$user_login string
The username for the user.
$user_data WP_User
WP_User object.

Top ↑

Source

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

$title = apply_filters( 'retrieve_password_title', $title, $user_login, $user_data );


Top ↑

Changelog

Changelog
Version Description
4.4.0 Added the $user_login and $user_data parameters.
2.8.0 Introduced.

Top ↑

User Contributed Notes

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