Skip to content

Instantly share code, notes, and snippets.

@ChromeOrange
Created July 29, 2012 20:34
Show Gist options
  • Save ChromeOrange/3201696 to your computer and use it in GitHub Desktop.
Save ChromeOrange/3201696 to your computer and use it in GitHub Desktop.
Change number of products per page
<?php
add_action( 'init', 'custom_ppp_filter' );
function custom_ppp_filter() {
add_filter( 'loop_shop_per_page','custom_query_ppp_args' );
}
// Posts Per Page Args
function custom_query_ppp_args() {
// Posts Per Page
return '10'; // Change this number to set how many products per page you would like
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment