WC_Admin_List_Table_Products::order_by_global_unique_id_desc_post_clauses
Handle global unique ID sorting.
Метод класса: WC_Admin_List_Table_Products{}
Хуков нет.
Возвращает
Массив.
Использование
$WC_Admin_List_Table_Products = new WC_Admin_List_Table_Products(); $WC_Admin_List_Table_Products->order_by_global_unique_id_desc_post_clauses( $args );
- $args(массив) (обязательный)
- Query args.
Код WC_Admin_List_Table_Products::order_by_global_unique_id_desc_post_clauses() WC Admin List Table Products::order by global unique id desc post clauses WC 10.4.3
public function order_by_global_unique_id_desc_post_clauses( $args ) {
$args['join'] = $this->append_product_sorting_table_join( $args['join'] );
$args['orderby'] = ' wc_product_meta_lookup.global_unique_id DESC, wc_product_meta_lookup.product_id DESC ';
return $args;
}