Last active
October 10, 2016 11:10
-
-
Save MinaPansuriya/2d7dfc3379248bb1d4db2af4deb9910b 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
/** | |
* @Title: Change number of products per row on Shop/Category Page | |
* @Author: Mina Pansuriya | |
* @Website: http://minapansuriya.com | |
*/ | |
add_filter( ‘loop_shop_columns’, ‘pbs_woo_modify_no_of_columns_on_shop_page’ ); | |
function pbs_woo_modify_no_of_columns_on_shop_page( $no_of_columns ) { | |
$no_of_columns = 3; | |
return $no_of_columns; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment