Automattic\WooCommerce\Blocks\Domain\Services\Email
CustomerNewAccount::get_content_html() public WC 1.0
Get content html.
{} Это метод класса: CustomerNewAccount{}
Хуков нет.
Возвращает
Строку
. Null. Ничего.
Использование
$CustomerNewAccount = new CustomerNewAccount(); $CustomerNewAccount->get_content_html();
Код CustomerNewAccount::get_content_html() CustomerNewAccount::get content html WC 5.2.0
public function get_content_html() {
return wc_get_template_html(
$this->template_html,
array(
'email_heading' => $this->get_heading(),
'additional_content' => $this->get_additional_content(),
'user_login' => $this->user_login,
'blogname' => $this->get_blogname(),
'set_password_url' => $this->set_password_url,
'sent_to_admin' => false,
'plain_text' => false,
'email' => $this,
),
'',
$this->default_template_path
);
}