b3_email_footer_text()

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

  1. function b3_email_footer_text( $footer_text ) {
  2.  
  3.     $footer_text = 'My footer text';
  4.  
  5.     return $footer_text;
  6. }
  7. add_filter( 'b3_email_footer_text', 'b3_email_footer_text' );

Used in

Tags