Created
June 21, 2013 00:03
-
-
Save csbeck/5827856 to your computer and use it in GitHub Desktop.
Genesis Feature Loop Page with Content on the top
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This file adds a custom Genesis Loop */ | |
/* | |
Template Name: Feature Loop Page | |
*/ | |
remove_action( 'genesis_loop', 'genesis_do_loop' ); | |
add_action( 'genesis_loop', 'child_grid_loop_helper', 55 ); | |
/** Add support for Genesis Grid Loop **/ | |
function child_grid_loop_helper() { | |
if ( function_exists( 'genesis_grid_loop' ) ) { | |
genesis_grid_loop( array( | |
'features' => 0, | |
'feature_image_size' => 'be_feature', | |
'feature_image_class' => 'image_feature', | |
'feature_content_limit' => 0, | |
'grid_image_size' => 'be_grid', | |
'grid_image_class' => 'image_grid', | |
'grid_content_limit' => 200, | |
'more' => __( 'Continue reading...', 'genesis' ), | |
'posts_per_page' => 6, | |
) ); | |
} | |
else { | |
genesis_standard_loop(); | |
} | |
} | |
genesis(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment