Guest User

Untitled

a guest
Mar 23rd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );
  2. function new_loop_shop_per_page( $cols ) {
  3. // $cols contains the current number of products per page based on the value stored on Options -> Reading
  4. // Return the number of products you wanna show per page.
  5. $cols = 50;
  6. return $cols;
  7. }
Add Comment
Please, Sign In to add comment