你如何在Tumblr的固定链接页面中隐藏图像?

时间:2014-04-08 03:58:34

标签: css tumblr permalinks

我希望在我的主要tumblr页面上拥有自己的缩略图以显示视频帖子....并且仅在永久链接页面中显示视频而不显示缩略图。

这是我尝试做的一个示例网站: http://devour.com/(不是tumblr,但同样的想法)

我认为最好的方法是将缩略图作为照片发布,并嵌入视频。然后在永久链接页面中隐藏图像。

所以我的问题是......如何在固定链接页面中隐藏图像?

1 个答案:

答案 0 :(得分:1)

不要将图片隐藏在固定链接页面上,而是使用主题操作符{block:IndexPage}{block:PermalinkPage}来仅包含您需要的内容。

{block:Posts}
  {block:Photo}

  <!-- On the Index, show only the Image / Cover -->
  {block:IndexPage}
    <img src="{PhotoURL-500}">
  {/block:IndexPage}
  <!-- On the Permalink, show only the Caption, which contains the video -->
  {block:PermalinkPage}
    {block:Caption}
    {Caption}
    {/block:Caption}
  {/block:PermalinkPage}

  {/block:Photo}
{/block:Posts}

参考:http://www.tumblr.com/docs/en/custom_themes#basic_variables

相关问题