Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wbcomdev/acffce512a022e6a9f08c6038c3acb35 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/acffce512a022e6a9f08c6038c3acb35 to your computer and use it in GitHub Desktop.
/**
* Change number or products per row to 3.
*/
if ( ! function_exists( 'loop_columns' ) ) {
function wb_loop_columns() {
return 3; // 3 products per row
}
}
add_filter( 'loop_shop_columns', 'wb_loop_columns', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment