Skip to content

Instantly share code, notes, and snippets.

@infocities
Forked from jameskoster/functions.php
Created August 25, 2021 20:45
Show Gist options
  • Select an option

  • Save infocities/449810a11d4fcd9df76ec566c216a495 to your computer and use it in GitHub Desktop.

Select an option

Save infocities/449810a11d4fcd9df76ec566c216a495 to your computer and use it in GitHub Desktop.
WooCommerce - change number of products displayed per page
add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );
function new_loop_shop_per_page( $cols ) {
// $cols contains the current number of products per page based on the value stored on Options -> Reading
// Return the number of products you wanna show per page.
$cols = 9;
return $cols;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment