Drupal Views-li 标签大约每 2 个结果?
如何在 drupal 视图中每 2 个结果周围放置 li 标签?
我有这个;
result1
result2
result3
result4
我需要这个;
<li> result1 result2 </li>
<li> result3 result4 </li>
谢谢
How can I put li tags around every 2 results in drupal views?
I have this;
result1
result2
result3
result4
And I need this;
<li> result1 result2 </li>
<li> result3 result4 </li>
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在循环结果的模板中,您可以创建一个计数器并使用它来添加 li 标签(如果需要)。因此,如果计数器是奇数,则在开始处添加开始 li 标记,如果计数器是偶数,则添加结束 li 标记。
In the template that loops through the results, you can make a counter and use that to add the li tags if needed. So if the counter is odd, add opening li tag in the start and if the counter is even, add the closing li tag.