Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Created September 6, 2017 07:47
Show Gist options
  • Save cryptexvinci/ad5883ec35d2b876c9a95e86f6c54fd7 to your computer and use it in GitHub Desktop.
Save cryptexvinci/ad5883ec35d2b876c9a95e86f6c54fd7 to your computer and use it in GitHub Desktop.
Change Storefront Homepage section number of products.
add_filter('storefront_featured_products_shortcode_args','custom_storefront_featured_product_per_page' );
// Featured Featured Products per page
function custom_storefront_featured_product_per_page( $args ) {
$args['per_page'] = 10;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment