gpt4 book ai didi

php - 在每三个 wordpress 帖子中添加一个类

转载 作者:行者123 更新时间:2023-12-04 14:44:13 25 4
gpt4 key购买 nike

我在博客类别中列出了所有 wordpress 帖子,但试图在每三个“fourcol”类中添加一个名为“last”的类

HTML

<div class="container">
<div class="row">

<?php query_posts('category_name=blog&showposts=10&orderby=date&order=dsc'); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

<div class="fourcol">
<a href=""><h2 class="blogtitle"><?php the_title(); ?></h2></a>
<a href="#"><img src="images/_scroll1.jpg"></a>
<span class="date">12 May 2011</span>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<a class="more" href="#">Keep reading</a>
</div><!-- fourcol END -->

<?php endwhile; endif; ?>
</div><!-- row END -->
</div><!-- container END -->

希望这是有道理的?

最佳答案

使用 CSS

代替

.last

使用

.fourcol:nth-child(3n+1)

关于php - 在每三个 wordpress 帖子中添加一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6847273/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com