Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Created February 13, 2020 05:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webtoffee-git/89655aa6cbed62d28647ec9bdc920369 to your computer and use it in GitHub Desktop.
Save webtoffee-git/89655aa6cbed62d28647ec9bdc920369 to your computer and use it in GitHub Desktop.
Modify sorting of related products using WooCommerce Related Product by WebToffee
add_filter('wt_related_products_odrerby', function($odrerby){
return 'date'; // default is 'title' -- see WP Query args for more details
});
add_filter('wt_related_products_odrer', function($odrer){
return 'DESC'; // default is 'ASC' -- see WP Query args for more details
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment