Home › Forums › Back End › Adding permalink to thumbnail › Reply To: Adding permalink to thumbnail
September 8, 2014 at 1:26 am
#182105
Participant
This is all you need to do:
Within the loop you can just use this code <?php echo get_permalink(); ?>
This code gets the link for the current post.
And you can use that code to link thumbnails to the post like this:
<a href="<?php echo get_permalink(); ?>"><img src="img/pic.jpg" alt="image" /></a>
<code></code>
I hope you get the idea.