我在我的WP网站上使用自定义的帖子类型,也使用引导。
我想在我的主页上列出5个自定义帖子类型条目,我希望前3个在一行中有col-md-4类,在下一行中有2个cpt条目有col-md-6类
目前,我有一个col-md-4类,第二行的两个项目没有很好地居中。
这是我当前的代码:
<div class="container-fluid gray-section">
<div class="container">
<div class="row">
<?php
$projects = get_posts(array(\'post_type\'=>\'project\',\'posts_per_page\'=>5, \'order\'=>\'ASC\'));
if ($projects) { ?>
<ul class="list-unstyled">
<?php foreach ($projects as $post) { setup_postdata( $post ) ?>
<li class="col-md-4 col-sm-6 col-xs-12 col-xxs-12 text-center ">
<a class="highlights-item" href="<?php echo get_permalink(); ?>">
<div class="highlights-container">
<?php the_post_thumbnail(); ?>
<span class="highlights-title">
<?php the_excerpt(); ?>
</span>
</div>
</a>
</li>
<?php } wp_reset_postdata(); ?>
</ul>
<?php }
?>
</div> <!-- end row -->
</div> <!-- end container -->
</div> <!-- end container fluid -->
有什么建议可以解决这个问题吗?