Description
Filters the footer text shown in the default email template.
Arguments
- $footer_text(string) - Your custom footer text (html is allowed).
Return
(string) The footer text in the default email template.
Usage
function b3_email_footer_text( $footer_text ) {
$footer_text = 'My footer text';
return $footer_text;
}
add_filter( 'b3_email_footer_text', 'b3_email_footer_text' );
Used in
- includes/do-stuff.php - line 313
- includes/do-stuff.php - line 366