将 CSS 代码添加到循环的每第三次迭代中 - WordPress

发布于 2024-12-05 08:49:52 字数 313 浏览 1 评论 0原文

我想为此 WP 循环的每个第三次迭代添加一个 style="background:green"

我该如何实现这一目标?

   if( have_posts() ) :
    while ($wp_query->have_posts()) : $wp_query->the_post();
    ?>
    <li>Test</li>
    <?php endwhile; ?>
    <?php endif;

非常感谢您的指点。

I'd like to add a style="background:green" for every 3rd iteration of this WP loop.

How do I achieve this?

   if( have_posts() ) :
    while ($wp_query->have_posts()) : $wp_query->the_post();
    ?>
    <li>Test</li>
    <?php endwhile; ?>
    <?php endif;

Many thanks for any pointers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

护你周全 2024-12-12 08:49:52

您是否尝试过使用 % 运算符?类似以下内容(未经测试):

if( have_posts() ) :
$i=0;
while ($wp_query->have_posts()) : $wp_query->the_post();
$i++;
?>
<li <?php if(($i % 3)==0)echo 'style="background:green"';?>>Test</li>
<?php endwhile; ?>
<?php endif;

PHP 参考: http://php.net/手册/en/language.operators.arithmetic.php

Have you tried using the % operator. Something like the following (untested):

if( have_posts() ) :
$i=0;
while ($wp_query->have_posts()) : $wp_query->the_post();
$i++;
?>
<li <?php if(($i % 3)==0)echo 'style="background:green"';?>>Test</li>
<?php endwhile; ?>
<?php endif;

PHP reference: http://php.net/manual/en/language.operators.arithmetic.php

我早已燃尽 2024-12-12 08:49:52

也许是递增变量和模运算符的使用,只是一个想法。 http://php.net/manual/en/language.operators.arithmetic.php ,与 WP 类似:http://www.ilovecolors.com.ar/ads-wordpress-loop/

Maybe an incrementing variable and usage of the modulus operator, just an idea. http://php.net/manual/en/language.operators.arithmetic.php, something similar for WP: http://www.ilovecolors.com.ar/ads-wordpress-loop/

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