1 回答

TA貢獻1856條經(jīng)驗 獲得超11個贊
只是一個小小的改變。您需要確保在循環(huán)acf開始之前將您的計數(shù)器重置為 0。
<?php $counter = 0; //Initialize your Counter here before the Loop Starts for each Post ?>
<?php if( have_rows('row') ): ?>
<div class="row">
<?php while( have_rows('row') ): the_row(); $text = get_sub_field('text'); ?>
<div class="col-md-6">
<?php echo $text; ?>
</div>
<?php $counter++; if($counter % 2 === 0) : echo '</div> <div class="row">'; endif; ?>
<?php endwhile; ?>
</div>
<?php endif; ?>
- 1 回答
- 0 關(guān)注
- 127 瀏覽
添加回答
舉報