Skip to content

Instantly share code, notes, and snippets.

@Musilda
Created May 15, 2020 19:28
Show Gist options
  • Save Musilda/e8c671dfc5c536f0b6713e7b7b6900fe to your computer and use it in GitHub Desktop.
Save Musilda/e8c671dfc5c536f0b6713e7b7b6900fe to your computer and use it in GitHub Desktop.
<?php
add_filter( 'woocommerce_default_catalog_orderby', 'musilda_default_random_order' );
function musilda_default_random_order(){
return 'rand';
}
add_filter( 'woocommerce_default_catalog_orderby', 'musilda_default_price_order' );
function musilda_default_price_order(){
return array( 'price', 'ASC' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment