Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save lukecav/2a75d0e2509d095d98941f2a33ee3773 to your computer and use it in GitHub Desktop.

Select an option

Save lukecav/2a75d0e2509d095d98941f2a33ee3773 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