Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created October 9, 2017 14:59
Show Gist options
  • Select an option

  • Save stuartduff/c550d5050a1bbaa2e732c1058f6f97ec to your computer and use it in GitHub Desktop.

Select an option

Save stuartduff/c550d5050a1bbaa2e732c1058f6f97ec to your computer and use it in GitHub Desktop.
Change WooCommerce products per page in Storefront
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