Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Last active December 10, 2015 02:19
Show Gist options
  • Save tomharrigan/4367188 to your computer and use it in GitHub Desktop.
Save tomharrigan/4367188 to your computer and use it in GitHub Desktop.
4 products
// Change number or products per row to 4
add_filter( 'loop_shop_columns', 'woo_custom_loop_columns' );
if ( ! function_exists( 'woo_custom_loop_columns' ) ) {
function woo_custom_loop_columns() {
return 4;
} // End woo_custom_loop_columns()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment