Automattic\WooCommerce\Admin\Features\ProductBlockEditor

ProductTemplate::set_order()publicWC 1.0

Set the template order.

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

Хуков нет.

Возвращает

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

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

$ProductTemplate = new ProductTemplate();
$ProductTemplate->set_order( $order );
$order(int) (обязательный)
The template order.

Код ProductTemplate::set_order() WC 9.7.1

public function set_order( int $order ) {
	$this->order = $order;
}