Automattic\WooCommerce\Blocks\BlockTypes

AbstractProductGrid::get_schema_orderby()protectedWC 1.0

Get the schema for the orderby attribute.

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

Хуков нет.

Возвращает

Массив. Property definition of orderby attribute.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_schema_orderby();

Код AbstractProductGrid::get_schema_orderby() WC 8.7.0

protected function get_schema_orderby() {
	return array(
		'type'    => 'string',
		'enum'    => array( 'date', 'popularity', 'price_asc', 'price_desc', 'rating', 'title', 'menu_order' ),
		'default' => 'date',
	);
}