Automattic\WooCommerce\Internal\Admin\BlockTemplates
AbstractBlock::set_order
Set the block order.
Method of the class: AbstractBlock{}
No Hooks.
Returns
null. Nothing (null).
Usage
$AbstractBlock = new AbstractBlock(); $AbstractBlock->set_order( $order );
- $order(int) (required)
- The block order.
AbstractBlock::set_order() AbstractBlock::set order code WC 10.8.1
public function set_order( int $order ) {
$this->order = $order;
}