Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Last active September 16, 2017 15:04
Show Gist options
  • Save cryptexvinci/bc3d8dc1592ace448d0bf324d2a56e85 to your computer and use it in GitHub Desktop.
Save cryptexvinci/bc3d8dc1592ace448d0bf324d2a56e85 to your computer and use it in GitHub Desktop.
set number of product category you want to display on Storefront Homepage.
add_filter('storefront_product_categories_shortcode_args','custom_storefront_category_per_page' );
// Category Products
function custom_storefront_category_per_page( $args ) {
$args['number'] = 10;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment