<?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' ); |
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