自定义博客帖子在WordPress中不会并排出现

时间:2020-11-21 作者:Bodom NCQ

我正在制作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>

enter image description here

1 个回复
SO网友:Had1z

这是因为您在循环的每个迭代中都创建了一个卡片组。您应该移动<div class="card-group" > div退出循环。

相关推荐

URL Design for Sub-Posts?

我目前有:mysite.com/product-name mysite.com/another-product 等,其中产品名称和其他产品是帖子。然后,我有一个名为Changelogs的自定义帖子类型,我为每个产品都有这个类型,是否可以有类似以下内容的url:mysite.com/product-name/changelog mysite.com/another-product/changelog 如果是的话,我该怎么做呢?