[Theming Snippets][Change number of products per row]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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