Description
Filters the content for the email subject received by the user when he/she initiates a password reset.
Arguments
- $subject(string) - The current subject.
Return
(string) The email subject sent to an user for a password reset
Usage
function b3_lost_password_subject( $subject ) {
return 'Password reset for %blog_name%';
}
add_filter( 'b3_lost_password_subject', 'b3_lost_password_subject' );
Used in
- admin/preview.php - line 67
- includes/filters-wp.php - line 259