Title: Featured posts as fully displayed posts
Last modified: August 30, 2016

---

# Featured posts as fully displayed posts

 *  [JasonBC](https://wordpress.org/support/users/jasonbc/)
 * (@jasonbc)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/featured-posts-as-fully-displayed-posts/)
 * 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](https://wordpress.org/support/users/author/)
   Bill Erickson * [@link](https://wordpress.org/support/users/link/) [http://www.billerickson.net/code/full-content-features-in-grid-loop](http://www.billerickson.net/code/full-content-features-in-grid-loop)**
   [@param](https://wordpress.org/support/users/param/) string $option * [@return](https://wordpress.org/support/users/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://wordpress.org/plugins/genesis-grid-loop/](https://wordpress.org/plugins/genesis-grid-loop/)

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

 * ![](https://s.w.org/plugins/geopattern-icon/genesis-grid-loop.svg)
 * [Genesis Grid](https://wordpress.org/plugins/genesis-grid-loop/)
 * [Support Threads](https://wordpress.org/support/plugin/genesis-grid-loop/)
 * [Active Topics](https://wordpress.org/support/plugin/genesis-grid-loop/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/genesis-grid-loop/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/genesis-grid-loop/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [JasonBC](https://wordpress.org/support/users/jasonbc/)
 * Last activity: [10 years, 7 months ago](https://wordpress.org/support/topic/featured-posts-as-fully-displayed-posts/)
 * Status: not resolved