ZaZaKi, a web developer Between Manchester UK & Rotterdam NL. © 2015-2024.

WooCommerce number of products displayed per page

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 = 6;
  return $cols;
}