Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 9, 2013 18:56
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 billerickson/4495793 to your computer and use it in GitHub Desktop.
Save billerickson/4495793 to your computer and use it in GitHub Desktop.
Use Full Content for Features in Grid Loop
<?php
/**
* Use Full Content for Features in Grid Loop
*
* @author Bill Erickson
* @link http://www.billerickson.net/code/full-content-features-in-grid-loop
*
* @param string $option
* @return string $option
*/
function be_full_content_for_features( $option ) {
if( in_array( 'feature', get_post_class() ) )
$option = 'full';
return $option;
}
add_filter( 'genesis_pre_get_option_content_archive', 'be_full_content_for_features' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment