Automattic\WooCommerce\Blocks\BlockTypes
AbstractProductGrid::get_schema_orderby
Get the schema for the orderby attribute.
Метод класса: AbstractProductGrid{}
Хуков нет.
Возвращает
Массив. Property definition of orderby attribute.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_schema_orderby();
Код AbstractProductGrid::get_schema_orderby() AbstractProductGrid::get schema orderby WC 11.0.0
protected function get_schema_orderby() {
return array(
'type' => 'string',
'enum' => array( 'date', 'popularity', 'price_asc', 'price_desc', 'rating', 'title', 'menu_order' ),
'default' => 'date',
);
}