b3_email_activation_subject_user()

Description

Filters the content for the email subject received by the user when he/she needs to verify their email address.

Arguments

  • $subject
    (string) - Your custom subject.

Return

(string)   The email subject sent to the user.

Usage

  1. function b3_email_activation_subject_user( $subject ) {
  2.     return 'Please confirm your email for %blog_name%';
  3. }
  4. add_filter( 'b3_email_activation_subject_user', 'b3_email_activation_subject_user' );

Used in

Tags