Wordpress:如何清除循环

时间:2015-11-11 05:05:39

标签: wordpress twitter-bootstrap twitter-bootstrap-3

我使用的是Wordpress引导程序主题,并且我在每行后都无法清除。有些列没有被清除,因此它们之间有空格。

这是我用来显示自定义帖子类型"电影"

的代码
<?php 

//Define your custom post type name in the arguments

$args = array('post_type' => 'movie', 'posts_per_page'=>'100', 'order'=>'ASC') ;

//Define the loop based on arguments

$loop = new WP_Query( $args );

//Display the contents

while ( $loop->have_posts() ) : $loop->the_post();
?>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6" style="padding-bottom:20px;"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_post_thumbnail( 'movie-poster' );  ?></a><?php the_title(); ?><br><em><?php the_date(); ?></em></div>
<?php endwhile;?>

我相信我需要在每隔4或3或2(取决于屏幕)帖后清除它。如何将其添加到上面的代码中?

1 个答案:

答案 0 :(得分:0)

我认为您正在寻找帖子的网格布局。请查看此问题:Wordpress Loop posts in Bootstrap 3 grid layout