Skip to content

Instantly share code, notes, and snippets.

@woogist
Created October 11, 2017 15:02
Show Gist options
  • Save woogist/3c3c95f8f8cc2f1fe29439eb7846fec3 to your computer and use it in GitHub Desktop.
Save woogist/3c3c95f8f8cc2f1fe29439eb7846fec3 to your computer and use it in GitHub Desktop.
Documentation: Storefront Filters example: Change the number of products displayed per page
function alter_sf_products_per_page() {
// Return the number of products per page ( default: 12 ).
return 8;
}
add_filter('storefront_products_per_page', 'alter_sf_products_per_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment