Hyperlink category archive featured image to post

January 2013 WordPress Theme
GK User
Mon May 13, 2013 6:35 pm
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
User avatar
Fresh Boarder

GK User
Mon May 13, 2013 7:58 pm
Edit:
wp-content/themes/News/layouts/content.post.featured.php

and change:
Code: Select all
<figure class="featured-image">
   <?php the_post_thumbnail(); ?>
</figure>


into:
Code: Select all
<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>

or what would be a better solution if You plan to upgrade theme in future, copy oryginal file:
wp-content/themes/News/layouts/content.post.featured.php
to:
wp-content/themes/News-Child/layouts/content.post.featured.php

and make change on file in News-Child folder.
User avatar
Moderator


cron