Title: clickable thumbnails in post preview
Last modified: August 24, 2016

---

# clickable thumbnails in post preview

 *  Resolved [quteo](https://wordpress.org/support/users/quteo/)
 * (@quteo)
 * [11 years ago](https://wordpress.org/support/topic/clickable-thumbnails-in-post-preview/)
 * Hi acosmin,
 * need your help with the follow:
 * A lot of users telling me they trying to enter a post while clicking on the thumbnail
   on main page. After they understood that its not clickable they clciking on the
   title to enter detailed post.
 * Is there a way to make the thumbnails also clickable to enter the individual 
   post on main pages?
 * Also if is possible it would be better for usability not only make the title 
   and the thumbnail clickable, but also the whole preview text of the post, so 
   that the whole square including tilte, thumbnail and preview text is a big “show
   more” button?
 * I appreciate your help.
 * Thank you

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Theme Author [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [11 years ago](https://wordpress.org/support/topic/clickable-thumbnails-in-post-preview/#post-6026169)
 * Open `../post-templates/content.php` find:
 *     ```
       if ( has_post_thumbnail() ) :
       					the_post_thumbnail( 'ac-post-thumbnail' );
       ```
   
 * replace with:
 *     ```
       if ( has_post_thumbnail() ) :
       		echo '<a href="' . esc_url( get_permalink() ) . '">';
       		the_post_thumbnail( 'ac-post-thumbnail' );
       		echo '</a>';
       ```
   
 *  Thread Starter [quteo](https://wordpress.org/support/users/quteo/)
 * (@quteo)
 * [11 years ago](https://wordpress.org/support/topic/clickable-thumbnails-in-post-preview/#post-6026193)
 * Thank you so much!!!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘clickable thumbnails in post preview’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/justwrite/2.0.3.6/screenshot.png)
 * JustWrite
 * [Support Threads](https://wordpress.org/support/theme/justwrite/)
 * [Active Topics](https://wordpress.org/support/theme/justwrite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/justwrite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/justwrite/reviews/)

## Tags

 * [clickable](https://wordpress.org/support/topic-tag/clickable/)
 * [link](https://wordpress.org/support/topic-tag/link/)
 * [show more](https://wordpress.org/support/topic-tag/show-more/)
 * [thumbnail](https://wordpress.org/support/topic-tag/thumbnail/)

 * 2 replies
 * 2 participants
 * Last reply from: [quteo](https://wordpress.org/support/users/quteo/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/clickable-thumbnails-in-post-preview/#post-6026193)
 * Status: resolved