Skip to content

Instantly share code, notes, and snippets.

@projoomexperts
Created March 13, 2015 10:59
Show Gist options
  • Save projoomexperts/ecc9e56e09659d4278d7 to your computer and use it in GitHub Desktop.
Save projoomexperts/ecc9e56e09659d4278d7 to your computer and use it in GitHub Desktop.
Woocoomerce Loop per column
add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
function loop_columns() {
return 3; // 3 products per row
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment