In “index.php” search the line:
<?php while ( have_posts() ) : the_post(); ?>
right after that line, insert the code below:
<?php if ( has_post_thumbnail()) : ?>
<div style=”float:left;margin:7px;”> ” title=”<?php the_title_attribute(); ?>” >
<?php the_post_thumbnail(‘thumbnail’); ?>
</div>
<?php endif; ?>
It will show your featured image in excerpt with a thumbnail linking to your post.