Howdy,
I would like to have the featured image on the category view hyperlink to the post, any idea on how this would be done? This is my example: http://www.previousmagazine.com/category/technology
Thank you!
Hamual
<figure class="featured-image">
<?php the_post_thumbnail(); ?>
</figure>
<figure class="featured-image">
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', GKTPLNAME ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
<?php the_post_thumbnail(); ?>
</a>
</figure>