I figured out how to add the featured thumbnail image, by just adding this:
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
}
?>
To the archives page. But now I can’t figure out how to make more than 1 post show up per category. I’d like at least 5 posts per category page.