Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickburne/11372610 to your computer and use it in GitHub Desktop.
Save nickburne/11372610 to your computer and use it in GitHub Desktop.
Customise the number of columns and products displayed per page
// Display 24 products per page. Goes in functions.php
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 24;' ), 20 );
@Jumpnwow
Copy link

Hi ~
Thank you for good code.
I have a question.
What is the path to the folder in the functions.php file?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment