Description
Filters the content for the email subject received by the user when an administrator has approved the request.
Arguments
- $subject(string) - Your custom subject.
Return
(string) The email subject sent to the user.
Usage
function b3_account_approved_subject( $subject ) {
return 'Account approved for %blog_name%';
}
add_filter( 'b3_account_approved_subject', 'b3_account_approved_subject' );
Used in
- admin/preview.php - line 51
- includes/actions-b3.php - line 34
- includes/actions-b3.php - line 588