在某种程度上,我试图进行自定义查询。它工作得很好。但我无法让它工作的地方是,每3篇文章之后就中断,做同样的事情(print div.row)并运行相同的循环,目前,我的代码似乎只输出3个奇数的文章,而我希望它在每3篇文章之后中断。
if ($news->have_posts() ) : while ($news->have_posts() ) : $news->the_post();
//$value = $news->current_post;
echo "<div class=\'col-lg-4\'>";
if($value % 3 == 0){
?>
<div class="height <?php foreach(get_the_category() as $category) { echo $category->slug . \' \';} ?>">
<div class="text">
<h5><?php the_time(\'F jS, Y\'); ?></h5>
<h4><a href=""><?php the_title(); ?></a></h4>
<?php the_excerpt(); ?>
</div>
</div>
<?php
//$i++;
//print($value);
}
echo "</div>";
endwhile; endif;
编辑:我的布局有什么不同,它应该在独立的行中,如中所示
bootly, 更像谷歌卡片布局。