我想将索引页面上的图片链接到永久链接页面,但标签似乎无法正常工作。并不是图像没有链接到正确的位置,它们根本就不会被渲染为链接。
这是代码:
{block:Photo}
<article id="{PostID}" class="post photo">
**<img src="{PhotoURL-HighRes}" href="{Permalink}" alt="{PhotoAlt}"/>**
{block:IndexPage}
<div style="{block:ifShowPhotoCaption} display: none; {/block:ifShowPhotoCaption}" class="control">
<a href="{Permalink}" title="Permalink Page" class="notes">{NoteCountWithLabel}</a>
这应该将索引页面上的图片链接到其永久链接页面,但它根本不会创建链接,方式相同&#39;注意计数&#39;标签在第二段代码中。
我试过了:
<img src="{PhotoURL-HighRes}"><a href="{Permalink}" alt="{PhotoAlt}"/>
而不是我发布的代码,但它没有任何区别。我也尝试将{block:IndexPage}移到{block:Photo}标签之前,但这不起作用,并且当我通过它查看它时也会弄乱固定链接页面的效果&#39;笔记计数&#39;链接。
我的tumblr:http://ginnypig.tumblr.com/
提前致谢。
答案 0 :(得分:0)
修正了它。
代码必须是:
<a href="{Permalink}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/></a>
与我使用的相反:
<img src="{PhotoURL-HighRes}" href="{Permalink}" alt="{PhotoAlt}"/>