Skip to content

Instantly share code, notes, and snippets.

@lukecav
Forked from coenjacobs/wc-shop-loop-columns.php
Created October 4, 2016 20:03
Show Gist options
  • Select an option

  • Save lukecav/1fa20ef16338578e68618ecb1d958f4a to your computer and use it in GitHub Desktop.

Select an option

Save lukecav/1fa20ef16338578e68618ecb1d958f4a to your computer and use it in GitHub Desktop.
Change the number of columns in which products will be shown on product archives
<?php
add_filter( 'loop_shop_columns', 'wc_loop_shop_columns', 1, 10 );
/*
* Return a new number of maximum columns for shop archives
* @param int Original value
* @return int New number of columns
*/
function wc_loop_shop_columns( $number_columns ) {
return 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment