php - Sorting Woocommerce products by sku only for a specific product category -
i need sort products specific category sku in woo-commerce. did research on , found bellow solution:
add_filter('woocommerce_get_catalog_ordering_args','spring_woocommerce_calog_orderby'); function spring_woocommerce_catalog_orderby($args) { global $post; $arg['category'] = 'rings'; $args['meta_key'] = '_sku'; $args['orderby'] = 'meta_value'; $args['order'] = 'desc'; return $args; }
it's sort products category in desc order. hintson how specific category ?
thanks !
Comments
Post a Comment