Description
Filters the content for the email message received by the user when he/she initiates a password reset.
Arguments
- $message(string) - The current lost password message.
Return
(string) The email content sent to a user after a password reset.
Usage
function b3_lost_password_message( $message ) {
return 'For a password reset, <a href="%reset_url%">click here</a>.';
}
add_filter( 'b3_lost_password_message', 'b3_lost_password_message' );
Used in
- admin/preview.php - line 66
- includes/actions-wp.php - line 282