Automattic\WooCommerce\Admin\Features\ProductBlockEditor

ProductTemplate::set_layout_template_id()publicWC 1.0

Set the layout template ID.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$ProductTemplate = new ProductTemplate();
$ProductTemplate->set_layout_template_id( $layout_template_id );
$layout_template_id(строка) (обязательный)
The layout template ID.

Код ProductTemplate::set_layout_template_id() WC 9.7.1

public function set_layout_template_id( string $layout_template_id ) {
	$this->layout_template_id = $layout_template_id;
}