b3_lost_password_message()

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

  1. function b3_lost_password_message( $message ) {
  2.     return 'For a password reset, <a href="%reset_url%">click here</a>.';
  3. }
  4. add_filter( 'b3_lost_password_message', 'b3_lost_password_message' );

Used in

Tags