Drupal Views-li 标签大约每 2 个结果?

发布于 2024-09-26 11:34:30 字数 242 浏览 1 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南风起 2024-10-03 11:34:30

在循环结果的模板中,您可以创建一个计数器并使用它来添加 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文