Reply To: Feature Image on Posts

Homepage Community Forums Epik Theme Support Feature Image on Posts Reply To: Feature Image on Posts

#13268
anehra75
Customer

    I just added this to functions.php and it works:

    // Code to Display Featured Image on top of the post
    add_action( ‘genesis_entry_content’, ‘featured_post_image’, 8 );
    function featured_post_image() {
    if ( ! is_singular( ‘post’ ) ) return;
    the_post_thumbnail(‘post-image’);
    }

    Just need to fix css spacing at the bottom of the image, but otherwise perfect.