PHP-每4次向foreach循环添加div,使用$post_对象

PHP-每4次向foreach循环添加div,使用$post_对象,php,wordpress,foreach,Php,Wordpress,Foreach,我正在构建一个wordpress页面(基于quark,使用ACF),显示来自其他帖子的信息,使用foreach(get_字段('experiments')作为$post_对象) 我希望“col grid\u 3\u of_12-divs”包含来自其他帖子的信息,以div分组,每个div中有四个。与此问题的作者类似的问题是: 我试过使用array_chunk,但似乎无法在不干扰从其他帖子检索信息的情况下成功 有人能帮我吗 我是自学的php初学者,如果我的代码很愚蠢,请原谅 <?php get

我正在构建一个wordpress页面(基于quark,使用ACF),显示来自其他帖子的信息,使用
foreach(get_字段('experiments')作为$post_对象)

我希望“col grid\u 3\u of_12-divs”包含来自其他帖子的信息,以div分组,每个div中有四个。与此问题的作者类似的问题是:

我试过使用array_chunk,但似乎无法在不干扰从其他帖子检索信息的情况下成功

有人能帮我吗

我是自学的php初学者,如果我的代码很愚蠢,请原谅

<?php get_header(); ?>

<div id="primary" class="site-content row clearfix" role="main">

    <div class="col grid_12_of_12">

        <?php while ( have_posts() ) : the_post(); ?>

            <?php foreach(get_field('exhibitions') as $post_object): ?>

                <a href="<?php echo get_permalink($post_object->ID); ?>">
                    <div class="col grid_3_of_12">
                        <h3 class="exhibition title"> <?php echo $post_object->short_title?> </h3>

                        <?php $attachment_id = $post_object->thumbnail;
                        $image_attributes = wp_get_attachment_image_src( $attachment_id, 'full' ); ?>
                        <img src="<?php echo $image_attributes[0]; ?>">

                        <p class="exhibition short desc"> <?php echo $post_object->short_description?> </p>
                    </div>
                </a>

            <?php endforeach; ?>

                <?php content_nav( 'nav-below' ); ?>

        <?php endwhile; ?>

    </div>


</div>

添加计数器。然后,当计数器位于正确的位置时,添加一个关闭或打开的div

<?php get_header(); ?>

<div id="primary" class="site-content row clearfix" role="main">

  <div class="col grid_12_of_12">

    <?php while ( have_posts() ) : the_post(); ?>

        <?php $counter = 0; /* ADD THIS */ ?>
        <?php foreach(get_field('exhibitions') as $post_object): ?>
          <?php if ($counter % 4 == 0): /* ADD THIS */ ?>
            <div class="group-of-4-posts-wrapper">
          <?php endif; ?>

            <a href="<?php echo get_permalink($post_object->ID); ?>">
                <div class="col grid_3_of_12">
                    <h3 class="exhibition title"> <?php echo $post_object->short_title?> </h3>

                    <?php $attachment_id = $post_object->thumbnail;
                    $image_attributes = wp_get_attachment_image_src( $attachment_id, 'full' ); ?>
                    <img src="<?php echo $image_attributes[0]; ?>">

                    <p class="exhibition short desc"> <?php echo $post_object->short_description?> </p>
                </div>
            </a>
          <?php if ($counter % 4 == 3): /* ADD THIS */ ?>
            </div>
          <?php endif; ?>
          <?php $counter++ ?>
        <?php endforeach; ?>
        <?php 
          // this closes the div if there is not a number of posts that is evenly
          // divisable by 4, like 11 posts. with 11 posts, the last post would have
          // ($counter % 4 == 3) equal to false, because $counter % 4 would = 2
          // adding this, closes the div, if it was not already closed
          if ($counter % 4 != 0): /* ADD THIS.  */ 
        ?>
          </div>
        <?php endif; ?>


            <?php content_nav( 'nav-below' ); ?>

    <?php endwhile; ?>

  </div>


</div>

添加计数器。然后,当计数器位于正确的位置时,添加一个关闭或打开的div

<?php get_header(); ?>

<div id="primary" class="site-content row clearfix" role="main">

  <div class="col grid_12_of_12">

    <?php while ( have_posts() ) : the_post(); ?>

        <?php $counter = 0; /* ADD THIS */ ?>
        <?php foreach(get_field('exhibitions') as $post_object): ?>
          <?php if ($counter % 4 == 0): /* ADD THIS */ ?>
            <div class="group-of-4-posts-wrapper">
          <?php endif; ?>

            <a href="<?php echo get_permalink($post_object->ID); ?>">
                <div class="col grid_3_of_12">
                    <h3 class="exhibition title"> <?php echo $post_object->short_title?> </h3>

                    <?php $attachment_id = $post_object->thumbnail;
                    $image_attributes = wp_get_attachment_image_src( $attachment_id, 'full' ); ?>
                    <img src="<?php echo $image_attributes[0]; ?>">

                    <p class="exhibition short desc"> <?php echo $post_object->short_description?> </p>
                </div>
            </a>
          <?php if ($counter % 4 == 3): /* ADD THIS */ ?>
            </div>
          <?php endif; ?>
          <?php $counter++ ?>
        <?php endforeach; ?>
        <?php 
          // this closes the div if there is not a number of posts that is evenly
          // divisable by 4, like 11 posts. with 11 posts, the last post would have
          // ($counter % 4 == 3) equal to false, because $counter % 4 would = 2
          // adding this, closes the div, if it was not already closed
          if ($counter % 4 != 0): /* ADD THIS.  */ 
        ?>
          </div>
        <?php endif; ?>


            <?php content_nav( 'nav-below' ); ?>

    <?php endwhile; ?>

  </div>


</div>


很好地使用了
%
(模数)运算符。我正在寻找类似的东西。你得到了我的投票,因为计数器有11个帖子。很好地使用了
%
(模数)操作符。我只是在找这样的东西。你站起来投我的票,因为柜台上有11个帖子。