woocommerce_email_description filter-hook . WC 1.0
Return the email's description
Usage
add_filter( 'woocommerce_email_description', 'filter_function_name_3530', 10, 2 ); function filter_function_name_3530( $description, $that ){ // filter... return $description; }
- $description
- -
- $that
- -
Where the hook is called
woocommerce_email_description
woocommerce/includes/emails/class-wc-email.php 479
return apply_filters( 'woocommerce_email_description', $this->description, $this );