【发布时间】:2021-09-05 18:49:17
【问题描述】:
我在我的 wordpress 网站中使用 ACF 转发器。
每个转发器都显示在col-md-6 中。
我想在col-md-12 中显示最后一个。
<div class="container">
<?php if ( have_rows( 'salon' ) ) : ?>
<div class="row">
<?php while ( have_rows( 'salon' ) ) : the_row(); ?>
<div class="col-md-6">
<div class="card">
<div class="card-body">
<h2 class="card-title">Card title</h2>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
</div>
【问题讨论】:
标签: wordpress bootstrap-4 advanced-custom-fields