mattlawck
5/28/2013 - 9:33 PM

Genesis grid loop.

Genesis grid loop.

<?php

//* Add support for Genesis Grid Loop
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'child_grid_loop_helper' );
function child_grid_loop_helper() {
  if ( function_exists( 'genesis_grid_loop' ) ) {
		genesis_grid_loop( array(
			'features' => 2,
			'feature_image_size' => 0,
			'feature_image_class' => 'alignleft post-image',
			'feature_content_limit' => 0,
			'grid_image_size' => 'grid-thumbnail',
			'grid_image_class' => 'alignleft post-image',
			'grid_content_limit' => 0,
			'more' => __( '[Continue reading...]', 'genesis' ),
		) );
	} else {
		genesis_standard_loop();
	}
}

//* Remove the post meta function for front page only
remove_action( 'genesis_entry_footer', 'genesis_post_meta', 10 );

genesis();
/* Featured Post Grid
------------------------------------------------------------ */

.genesis-grid-even {
  float: right;
	padding: 0 0 15px;
	width: 48%;
}

.genesis-grid-odd {
	clear: both;
	float: left;
	padding: 0 0 15px ;
	width: 48%;
}

.genesis-grid-even,
.genesis-grid-odd {
	margin: 0 0 20px;
}
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Add new image sizes
add_image_size('grid-thumbnail', 100, 100, TRUE);