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

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -