Advertisement
arie_cristianD

loop_shop_per_page

Jan 21st, 2024
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 99 );
  2.  
  3. function new_loop_shop_per_page( $cols ) {
  4.     // $cols contains the current number of products per page based on the value stored on Options –> Reading
  5.     // Return the number of products you wanna show per page.
  6.     $cols = 20;
  7.     return $cols;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement