Automattic\WooCommerce\Blocks\Domain\Services\Email
CustomerNewAccount::get_content_html()
Get content html.
Метод класса: CustomerNewAccount{}
Хуков нет.
Возвращает
Строку
.
Использование
$CustomerNewAccount = new CustomerNewAccount(); $CustomerNewAccount->get_content_html();
Код CustomerNewAccount::get_content_html() CustomerNewAccount::get content html WC 9.7.1
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 ); }