Show featured image next to post-teasers in Genesis Framework?

I want my posts to have a featured-image thumbnail beside it, how do I do this?

Related posts

Leave a Reply

2 comments

  1. (Cut/pasted from the OP.)

    SOLUTION:

    As it turns out, this is very simple.

    Go to your Dashboard –> Genesis –> Theme Settings

    Now in the box labelled “Content Archives” select “Display Post Excerpts” from the drop down menu. Now make sure the “Include the Featured Image” box is checked and select your image size.

    Save Settings.

    The featured-image thumbnail will now appear next to your posts.

  2. First you may need to add featured image support to your theme, if that functionality isn’t already enabled. To enable featured image support for your theme, add the following line of code to your themes functions.php file:

    add_theme_support('post-thumbnails');
    

    Next you want to open up the template that displays your post. Open up your single.php(or other) template file, and add the following code to check if the post has a featured image set, and if so, display it. I’ll leave it up to you to figure out where and how you want the image to display.

    if(has_post_thumbnail())
    {
    the_post_thumbnail();
    }