WC_Email_Customer_Invoice::get_default_heading( bool $paid = false )
Get email heading.
Description Description
Parameters Parameters
- $paid
-
(Optional) Whether the order has been paid or not.
Default value: false
Return Return
(string)
Source Source
File: includes/emails/class-wc-email-customer-invoice.php
public function get_default_heading( $paid = false ) { if ( $paid ) { return __( 'Invoice for order #{order_number}', 'woocommerce' ); } else { return __( 'Your invoice for order #{order_number}', 'woocommerce' ); } }
Changelog Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |