Skip to content

Instantly share code, notes, and snippets.

  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
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