Skip to content

Instantly share code, notes, and snippets.

@DMSpeed
Created March 20, 2013 20:06
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 DMSpeed/5207985 to your computer and use it in GitHub Desktop.
Save DMSpeed/5207985 to your computer and use it in GitHub Desktop.
Code to modify excerpt length using Bill Erickson's grid loop
/**
* Grid Content
* Change the number of words in excerpt if in the grid loop
*/
function be_grid_content() {
// First, we make sure we're in the grid loop.
if( ! apply_filters( 'is_genesis_grid_loop', false ) )
return;
// Change length if teaser
if( in_array( 'one-half teaser', get_post_class() ) ) {
$length = 60;
}
else {
$length = 400;
//print_r(get_post_class());
}
echo '<p>' . wp_trim_words( get_the_content() , $length ) . '</p>';
// Remove default content so we don't get both
remove_action( 'genesis_post_content', 'genesis_do_post_content' );
}
add_action( 'genesis_post_content', 'be_grid_content', 9 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment