Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Change WooCommerce Product Grid Column Number */
- if ( ! function_exists( 'loop_columns' ) ) {
- function loop_columns() {
- return 4; // 4 products per row
- }
- }
- add_filter( 'loop_shop_columns', 'loop_columns', 999 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement