Skip to content

Instantly share code, notes, and snippets.

@anhnn-mageplaza
Created July 14, 2021 04:10
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 anhnn-mageplaza/d63dc12ea59cf3564c02774d07a07ed6 to your computer and use it in GitHub Desktop.
Save anhnn-mageplaza/d63dc12ea59cf3564c02774d07a07ed6 to your computer and use it in GitHub Desktop.
Code to change product column per page in WooCommerce
// Change the Number of Columns Displayed Per Page
add_filter( 'loop_shop_columns', 'lw_loop_shop_columns' );
function lw_loop_shop_columns( $columns ) {
$columns = 5;
return $columns;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment