Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save woogists/3894598a086c4e265facc16fed0b9c10 to your computer and use it in GitHub Desktop.
Save woogists/3894598a086c4e265facc16fed0b9c10 to your computer and use it in GitHub Desktop.
[Theming Snippets][Change number of products per row]
/**
* Override theme default specification for product # per row
*/
function loop_columns() {
return 5; // 5 products per row
}
add_filter('loop_shop_columns', 'loop_columns', 999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment