Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartduff/95e7c786b59aafc0d6b5 to your computer and use it in GitHub Desktop.
Save stuartduff/95e7c786b59aafc0d6b5 to your computer and use it in GitHub Desktop.
Display All Product Categories on Storefront homepage
/**
* Alters the output of the homepage product categories on the Storefront theme
* Affects the storefront_product_categories_args filter in /inc/storefront-template-functions.php
*/
function sd_display_all_home_product_categories( $args ) {
// Sets the maximum product categories to 50, you can increase this to display more if need be.
$args['limit'] = 50;
// Displays the child categories in the output as by default only parent categories display.
$args['child_categories'] = '';
// Output
return $args;
}
add_filter( 'storefront_product_categories_args', 'sd_display_all_home_product_categories' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment