Link in thumbnail images in WordPress
-
How to assign links to thumbnail images? I have portfolio with thumbnail images of different websites and i have to add link to them. I have tried something like this but this open thumbnail photo.
<div class="showcase-image"> <?php $thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'large' ); if(has_post_thumbnail()): echo '<a href="'.$thumbnail[0].'" > <img src="'.$thumbnail[0].'"/></a>'; else: ?> <?php endif; ?> </div>
It would be nice if i can put href links in the php code and change it for the proper thumbnail image. I’am not a programmist…
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Link in thumbnail images in WordPress’ is closed to new replies.