WordPress功能可针对1、2-3、4-5个帖子,以应用不同的代码/样式

时间:2018-07-30 21:13:02

标签: php wordpress

我试图定位第一篇,第二篇第三篇和第四篇第五篇文章,以在Bootstrap和Wordpress中实现平铺式图像效果。我制作了一个插件来处理此代码,并使其也成为一个短代码,但出现错误。我知道它可以缩短,因为我的php知识是初学者。如果有任何帮助,最好缩短它,或者至少解决我遇到的错误问题。我的CSS工作正常,但没有php代码。 I am trying to achieve this

I started with this code

1 个答案:

答案 0 :(得分:1)

我们可以通过添加一个变量并在循环中增加它并每次检查来简化它 它可以让您控制每个帖子

$i=0;

之前

if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();

然后检查它是否第一次发贴

if($i==0) : echo 'class="active"'

然后在每个循环中将其增加

$i++; endwhile; endif;