I need to change the default product sorting option to "Newness" for a specific product category on my site. I know you can go to WooCommerce > Settings > Product > Display to globally change the default sorting option, but thats not what I need to do. I need something like:
function change_default_sorting_option(){
if(is_product_category('3555')){
//change default sorting option to newness
}
}
add_action('', 'change_default_sorting_option');
I haven't done much with the sorting functionalities so I'm not exactly sure where to start. I know the function should go in my child theme's functions.php.