WC_Email_Customer_POS_Refunded_Order::email_headerpublicWC 1.0

Get the email header.

Метод класса: WC_Email_Customer_POS_Refunded_Order{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WC_Email_Customer_POS_Refunded_Order = new WC_Email_Customer_POS_Refunded_Order();
$WC_Email_Customer_POS_Refunded_Order->email_header( $email_heading );
$email_heading(разное) (обязательный)
Heading for the email.

Код WC_Email_Customer_POS_Refunded_Order::email_header() WC 10.3.4

public function email_header( $email_heading ) {
	wc_get_template(
		'emails/email-header.php',
		array(
			'email_heading' => $email_heading,
			'store_name'    => $this->get_pos_store_name(),
		)
	);
}