1/**
2 * This code should be added to functions.php of your theme
3 **/
4
5add_filter('woocommerce_default_catalog_orderby', 'custom_default_catalog_orderby');
6
7function custom_default_catalog_orderby() {
8 return 'date'; // Can also use title and price
9}