Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 25, 2016 20:40
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 billerickson/182114d87733ef014a92 to your computer and use it in GitHub Desktop.
Save billerickson/182114d87733ef014a92 to your computer and use it in GitHub Desktop.
<?php // don't include this line
/**
* 2 column grid on home
*
*/
function be_home_grid_args( $args ) {
if( is_home() )
$args['teaser_columns'] = 2;
return $args;
}
add_filter( 'genesis_grid_loop_args', 'be_home_grid_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment