Skip to content

Instantly share code, notes, and snippets.

@spraveenitpro
Created June 26, 2015 04:10
Show Gist options
  • Save spraveenitpro/6e186eb63dafb6475569 to your computer and use it in GitHub Desktop.
Save spraveenitpro/6e186eb63dafb6475569 to your computer and use it in GitHub Desktop.
Change the number of Products per page to 12
//change the number of Products per page to 12
add_filter( 'loop_shop_per_page', 'change_number_of_products', 20, 1);
function change_number_of_products( $cols ) {
return 12;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment