我使用的是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(取决于屏幕)帖后清除它。如何将其添加到上面的代码中?