【发布时间】:2016-03-21 22:26:14
【问题描述】:
<?php
$args = array(
'post_type' => 'college',
'posts_per_page' => -1,
'order' => 'DESC',
'orderby' => 'menu_order'
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<div class="col-3">
<?php the_title(); ?>
</div>
<?php
endwhile;
endif;
wp_reset_postdata();
?>
嗨,
我以前从来没有这样做过。我正在尝试将上面循环中的每 4 个帖子包装在 <div class="row"></div>
【问题讨论】: