Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 18:48
Show Gist options
  • Save softiconic/094e4d90b88e17d56a7ebbe3e5720cd6 to your computer and use it in GitHub Desktop.
Save softiconic/094e4d90b88e17d56a7ebbe3e5720cd6 to your computer and use it in GitHub Desktop.
The default setting for new products in WooCommerce.
add_filter('woocommerce_default_catalog_orderby', 'misha_default_catalog_orderby');
function misha_default_catalog_orderby($sort_by)
{
return 'date';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment