Created
May 18, 2021 05:21
-
-
Save wbcomdev/acffce512a022e6a9f08c6038c3acb35 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| /** | |
| * 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