Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hemusyl/350700fc0f3ab29e8cb2 to your computer and use it in GitHub Desktop.
Save hemusyl/350700fc0f3ab29e8cb2 to your computer and use it in GitHub Desktop.
Switch Between 3-Column and 4-Column Grid
<?php
/**
* Switch between 3-column and 4-column layout grid
*/
add_filter( 'wpsight_layout', 'wpsight_custom_layout', 11 );
function wpsight_custom_layout( $layout ) {
if( $layout == 'three' )
return 'four';
return 'three';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment