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 PluginRepublicSupport/37ca2358616bb24bd0e117fca09e0937 to your computer and use it in GitHub Desktop.
Save PluginRepublicSupport/37ca2358616bb24bd0e117fca09e0937 to your computer and use it in GitHub Desktop.
Modify Product Category Limit
<?php
function prefix_pewc_products_for_cats_limit($limit) {
// Increase the limit to 120
$limit = 120;
return $limit;
}
add_filter('pewc_products_for_cats_limit', 'prefix_pewc_products_for_cats_limit');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment