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
function b3_email_activation_subject_user( $subject ) {
return 'Please confirm your email for %blog_name%';
}
add_filter( 'b3_email_activation_subject_user', 'b3_email_activation_subject_user' );
Used in
- admin/preview.php - line 63
- includes/filters-wp.php - line 167