Skip to content

Instantly share code, notes, and snippets.

@chronosceptor
Created December 14, 2018 16:12
Show Gist options
  • Select an option

  • Save chronosceptor/40d57fbc8c08a43dc1a5ecd3081f6b04 to your computer and use it in GitHub Desktop.

Select an option

Save chronosceptor/40d57fbc8c08a43dc1a5ecd3081f6b04 to your computer and use it in GitHub Desktop.
WooCommerce | Number of products to display on Shop Page
<?php
add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );
function new_loop_shop_per_page( $products ) {
// Return the number of products you wanna show per page.
$products = 6;
return $products;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment