开发者

Drupal Views- li tags around every 2 results?

开发者 https://www.devze.com 2023-01-18 18:40 出处:网络
How can I put li tags around every 2 results in drupal views? I have this; result1 result2 result3 result4

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>
&l开发者_高级运维t;li> result3 result4 </li>

Thanks


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消