Skip to content

Instantly share code, notes, and snippets.

@mbrughi
Created December 2, 2017 08:38
Show Gist options
  • Save mbrughi/5a54fcd825b43f575aff61cf50b9c902 to your computer and use it in GitHub Desktop.
Save mbrughi/5a54fcd825b43f575aff61cf50b9c902 to your computer and use it in GitHub Desktop.
Genesis Grid Loop Feature + 2 Col Grid
//* Genesis grid loop
function minimum_grid_loop_helper() {
if ( function_exists( 'genesis_grid_loop' ) ) {
genesis_grid_loop( array(
'features' => 1,
'feature_image_size' => 'featured-image',
'feature_content_limit' => 0,
'grid_image_size' => 'grid-image',
'grid_content_limit' => 0,
'more' => __( '[Read more]', 'minimum' ),
) );
} else {
genesis_standard_loop();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment