我正在制作WordPress的主题。我用Bootstrap创建的卡通常需要并排,但它们位于块元素级别。我该怎么做才能把博客文章放在一起?
<div class="container mt-5">
<h3><?php bloginfo("name"); ?></h3>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="card-group" >
<div class="card" >
<div class="card-body" >
<?php the_title( \'<h5 class="card-title">\', \'</h5>\' ); ?>
<p class="card-text"><?php the_excerpt(); ?></p>
<a class="btn btn-info" href="<?php the_permalink(); ?>">Devamını Oku</a>
</div>
</div>
</div>
<?php endwhile; endif; ?>
</div>