所以,很难解释,但每当我在ACF的转发器字段的每2个字段后使用模数来关闭我的行时,我的代码会打开另一个div,然后Chrome关闭它,或者我遗漏了某些东西。所以,在我的开发中,我有4个条目。现在,这可以通过打开和关闭s_flex_start row
两次,然后它第三次打开它,我不知道我错过了什么。
这是我的代码。
<?php if( have_rows('s_repeater') ): ?>
<?php //Call to $x ?>
<?php $x = 1; ?>
<div class="s_flex_start row">
<?php while( have_rows('s_repeater') ): ?>
<?php //Add one to $x ?>
<?php $x++; ?>
<div class="col-xs-6">
Content here
</div>
<?php if ( $x % 2 != 0 && $x != 0 ) : ?>
</div><div class="s_flex_start row">
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
编辑:作为此问题的解决方案,我继续使用flexbox
来调整列。