b3_lost_password_subject()

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

  1. function b3_lost_password_subject( $subject ) {
  2.     return 'Password reset for %blog_name%';
  3. }
  4. add_filter( 'b3_lost_password_subject', 'b3_lost_password_subject' );

Used in

Tags