WC_Email::get_block_editor_email_template_content
Get block editor email template content.
Method of the class: WC_Email{}
No Hooks.
Returns
String.
Usage
$WC_Email = new WC_Email(); $WC_Email->get_block_editor_email_template_content();
WC_Email::get_block_editor_email_template_content() WC Email::get block editor email template content code WC 10.8.1
public function get_block_editor_email_template_content() {
return wc_get_template_html(
$this->template_block_content,
array(
'order' => $this->object,
'sent_to_admin' => false,
'plain_text' => false,
'email' => $this,
)
);
}