Created
September 6, 2017 07:47
-
-
Save cryptexvinci/ad5883ec35d2b876c9a95e86f6c54fd7 to your computer and use it in GitHub Desktop.
Change Storefront Homepage section number of products.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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