Guest User

Untitled

a guest
Dec 14th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );
  3. function new_loop_shop_per_page( $products ) {
  4. // Return the number of products you wanna show per page.
  5. $products = 6;
  6. return $products;
  7. }
Add Comment
Please, Sign In to add comment