Skip to content

Instantly share code, notes, and snippets.

@RiaanKnoetze
Created November 7, 2017 03:41
Show Gist options
  • Save RiaanKnoetze/6db486e3e506b32e6ce9a7579fc78b5a to your computer and use it in GitHub Desktop.
Save RiaanKnoetze/6db486e3e506b32e6ce9a7579fc78b5a to your computer and use it in GitHub Desktop.
Change the orderby parameter for the Featured Products section in Storefront for WooCommerce
add_filter('storefront_featured_products_args','custom_storefront_featured_product_order' );
// Featured Products Order
function custom_storefront_featured_product_order( $args ) {
$args['orderby'] = 'title;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment