How to link Photo Posts to the permalink page of a Tumblr blog

tumblr

I have a Tumblr photoblog and what's annoying is that if you click on the image of a photopost you're linked to the permalink of that image alone.

Is there a way to link to the permalink page of the whole post instead?

Disqus comments don't make sense if nobody ever reaches the permalink page of our posts.

There's the same problem with post formats like Videos or Music too. No post title to click on means no easily accessible link to the permalink page which results in no Disqus comments.

Best Answer

Add the {Permalink} option using the anchor tag and the div tag applied to your Photo block

{block:Photo}
   <div class="photo post">
      <a href="{Permalink}">
         <div>
            <img src="{PhotoUrl-500}" alt="{PhotoAlt}">
         </div>
       </a>
      {block:Caption}{Caption}{/block:Caption}
   </div>
{/block:Photo}