Skip to content

Instantly share code, notes, and snippets.

@KnightAlex
Forked from coenjacobs/wc-shop-loop-columns.php
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KnightAlex/1c192353fe060ab720fd to your computer and use it in GitHub Desktop.
Save KnightAlex/1c192353fe060ab720fd to your computer and use it in GitHub Desktop.
<?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