Loop内的Tumblr当前帖子索引号

时间:2014-08-14 23:04:05

标签: html tumblr

我正在尝试一些非常简单但我无法弄明白的事情! 我正在尝试访问块中post的当前索引:tumblr中的posts循环。 基本上我需要每4个帖子显示一个div(所以在第4个帖子之后,在第8个帖子之后,......) 任何帮助将非常感激。 感谢

1 个答案:

答案 0 :(得分:1)

以指定的偏移量

渲染

Tumblr提供了一个块,允许您使用:{block:Post[1-15]} {/block:Post[1-15]}基于帖子偏移量呈现内容。

以下是基于OP要求的示例:

{block:Posts}

<div class="post">
...
</div>

{block:Post4}
  <div>I am the 4th post.</div>
{/block:Post4}

{block:Post8}
  <div>I am the 8th post.</div>
{/block:Post8}

{block:Post12}
  <div>I am the 12th post.</div>
{/block:Post12}

{/block:Posts}

<强>参考

发布块/变量:http://www.tumblr.com/docs/en/custom_themes#posts