Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created May 18, 2021 05:18
Show Gist options
  • Select an option

  • Save wbcomdev/a5eac5f4e906ba3983059852ef0dbe86 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/a5eac5f4e906ba3983059852ef0dbe86 to your computer and use it in GitHub Desktop.
/**
* Change number of products that are displayed per page (shop page).
*/
function wb_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;
}
add_filter( 'loop_shop_per_page', 'wb_loop_shop_per_page', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment