WC_Email_Customer_Processing_Order::get_content_html()publicWC 1.0

Get content html.

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

Хуков нет.

Возвращает

Строку.

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

$WC_Email_Customer_Processing_Order = new WC_Email_Customer_Processing_Order();
$WC_Email_Customer_Processing_Order->get_content_html();

Код WC_Email_Customer_Processing_Order::get_content_html() WC 8.7.0

public function get_content_html() {
	return wc_get_template_html(
		$this->template_html,
		array(
			'order'              => $this->object,
			'email_heading'      => $this->get_heading(),
			'additional_content' => $this->get_additional_content(),
			'sent_to_admin'      => false,
			'plain_text'         => false,
			'email'              => $this,
		)
	);
}