Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 18, 2015 09:39
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 braddalton/5763013 to your computer and use it in GitHub Desktop.
Save braddalton/5763013 to your computer and use it in GitHub Desktop.
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'child_grid_loop_helper' );
/** Add support for Genesis Grid Loop **/
/**
* @author Brad Dalton - WP Sites
* @learn more http://wp.me/p1lTu0-9Zs
*/
function child_grid_loop_helper() {
if ( function_exists( 'genesis_grid_loop' ) ) {
genesis_grid_loop( array(
'features' => 0,
'feature_image_size' => 650,
'feature_image_class' => 'align none post-image',
'feature_content_limit' => 0,
'grid_image_size' => 'grid',
'grid_image_class' => 'align left post-image',
'grid_content_limit' => 200,
'more' => __( 'Continue reading...', 'genesis' ),
'posts_per_page' => 4,
) );
}
else {
genesis_standard_loop();
}
}
genesis()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment