使用模数来关闭div,当没有内容时会打开一个新的div

时间:2016-11-30 22:44:59

标签: php

所以,很难解释,但每当我在ACF的转发器字段的每2个字段后使用模数来关闭我的行时,我的代码会打开另一个div,然后Chrome关闭它,或者我遗漏了某些东西。所以,在我的开发中,我有4个条目。现在,这可以通过打开和关闭s_flex_start row两次,然后它第三次打开它,我不知道我错过了什么。

Here is a link to the site with the issue in question. It's towards the bottom of the page, right below the 2nd slider.

这是我的代码。

  <?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来调整列。

0 个答案:

没有答案