Skip to content

Instantly share code, notes, and snippets.

@javiergbas
Last active August 29, 2015 14:23
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 javiergbas/783a2897ba11bdd84399 to your computer and use it in GitHub Desktop.
Save javiergbas/783a2897ba11bdd84399 to your computer and use it in GitHub Desktop.
WooCommerce useful snippets for functions.php
// Display 30 products per page. Goes in functions.php
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 30;' ), 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment