• I have this code to display the featured posts as fully displayed content instead of excerpts. I have Settings>Reading> Full posts and Genesis>Settings>Excerpts as my post settings. I get my 2 featured posts as even shorter excerpts than the excerpts. What am I doing wrong, how can I get this to work?:
    /**
    * 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’ );

    https://ww.wp.xz.cn/plugins/genesis-grid-loop/

The topic ‘Featured posts as fully displayed posts’ is closed to new replies.