Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Created September 6, 2017 12:42
Show Gist options
  • Save cryptexvinci/55ae7b1007a8e1c02e0d3c4d42e4fd40 to your computer and use it in GitHub Desktop.
Save cryptexvinci/55ae7b1007a8e1c02e0d3c4d42e4fd40 to your computer and use it in GitHub Desktop.
Display child categories on Storefront Homepage.
add_filter('storefront_product_categories_shortcode_args','custom_storefront_category_child' );
// Category Products - display child categories
function custom_storefront_category_child( $args ) {
$args['child_categories'] = 1;
return $args;
}
@johnnydemarch
Copy link

Hey! Thanks for share! But, it's not work to me =(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment