Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Displays all product categoris on the homepage of Storefront
function sd_display_four_home_product_categories( $args ) {
// Displays all product categoris on the homepage of Storefront
$args['limit'] = -1;
// Output
return $args;
}
add_filter( 'storefront_product_categories_args', 'sd_display_four_home_product_categories' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment