WC_Email::get_template()
Get template.
Метод класса: WC_Email{}
Хуков нет.
Возвращает
Строку
.
Использование
$WC_Email = new WC_Email(); $WC_Email->get_template( $type );
- $type(строка) (обязательный)
- Template type. Can be either 'template_html' or 'template_plain'.
Код WC_Email::get_template() WC Email::get template WC 9.2.3
public function get_template( $type ) { $type = basename( $type ); if ( 'template_html' === $type ) { return $this->template_html; } elseif ( 'template_plain' === $type ) { return $this->template_plain; } return ''; }