繁体   English   中英

每x个帖子使用模数交替行和列

[英]Alternate row and column every x post using modulo

我正在尝试使用模数实现每个x帖子的交替行和列。 并作为以下示例显示结构。 显示所有帖子,但不显示2和3帖子结构。 看来计数器无法正常工作,并且模数问题。 感谢您的审查。

例如:

 // start for each     
 // 2 posts
        <div class="row">
         <div class= "col-md-6"></div>
         <div class= "col-md-6"></div>
        </div>

    // next 3 posts in different row 
    <div class="row">
      <div class= "col-md-4"></div>
      <div class= "col-md-4"></div>
      <div class= "col-md-4"></div>
    </div>

    // repeat this structure for all my posts so: 
    // 2 posts in a row 
    // 3 posts in a row
    // 2 posts in a row 
    // 3 posts in a row 
    // ... 
    // ...

-- end foreach -- 

这是我的代码。

  <div class="wrapper container"> 
      <?php
       $count = 0;

     foreach(code) {
      if(!empty($listing_image_url)){     

        if ( $count % 5 === 0) : ?>
          <div class="row"> 
             <div class="col-md-6 list-column-block">
                  <ul>
              <li>
                <a href="<?php echo url($Url); ?>" class="listing__block__image">    
                  <div class="inner">
                    <?php if(!empty($listing_image_url)){ ?>                              
                      <img src="<?php echo $listing_image_url; ?>"/> 
                        <?php } ?>  
                          <div class="caption">
                            <div class="caption-inner">
                              <span class="caption-appeared">
                                <h5><span><?php print $Count; ?> homes</span></h5>
                              </span>
                              <span class="caption-des">
                                <?php print $title; ?></span><!--
                                 --><?php if ( $region ): ?><!--
                                 -->,<span class="caption-location">
                                      <?php print $region; ?>
                                      </span>
                                <?php endif; ?>
                            </div>
                          </div>
                       </div>
                    </a>              
                 </li>
               </ul>
              </div>
            </div>
            <?php endif;
            $count++; 
        if ($count % 5 === 1) :
          endif; 

        if ( $count % 5 === 2) : ?>
          <div class="row"> 
              <div class="col-md-4 list-column-block">
                    <ul>
              <li>
                <a href="<?php echo url($Url); ?>" class="listing__block__image">    
                  <div class="inner">
                    <?php if(!empty($listing_image_url)){ ?>                              
                      <img src="<?php echo $listing_image_url; ?>"/> 
                        <?php } ?>  
                          <div class="caption">
                            <div class="caption-inner">
                              <span class="caption-appeared">
                                <h5><span><?php print $Count; ?> homes</span></h5>
                              </span>
                              <span class="caption-des">
                                <?php print $title; ?></span><!--
                                 --><?php if ( $region ): ?><!--
                                 -->,<span class="caption-location">
                                      <?php print $region; ?>
                                      </span>
                                <?php endif; ?>
                            </div>
                          </div>
                       </div>
                    </a>              
                 </li>
               </ul>
             </div>
            </div>
          <?php endif;

            if ($count % 5 === 2 || $count % 5 === 3 || $count % 5 === 4) :
             endif; ?> 


       <?php } } ?> 

据我所知,您的代码将在每次迭代中产生一个新行(单列)。

要创建所需的结构,可以使用一个临时计数器。 我会给您一个快速的工作示例(简化为基本示例)。 如您所见,如果我们有奇数行或偶数行,则仅使用取模运算符来确定。

我希望这有帮助。

    $posts      = array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
    $count_rows = 1;
    $tmp_counter    = 1;
    $html           = "";

    foreach ($posts as $post) 
    {
        if ($tmp_counter == 1){
            $html .= '<div class="row">';   // create a new row on first run and after counter resets 
        }

        if ( $count_rows % 2 === 1) 
        {   
            // even row >> 2 Cols
            $html .= '<div class= "col-md-6">'.$post.'</div>';  // I would recommend to use a function to generate the post markup

            if ($tmp_counter == 2)
            {
                $html .= '</div>';  // close the row 
                $tmp_counter = 0;   // reset the temporary counter 
                $count_rows ++; // increase number of rows
            }
        }
        else
        {   
            // odd row >> 3 Cols
            $html .= '<div class= "col-md-4">'.$post.'</div>';  // I would recommend to use a function to generate the post markup

            if ($tmp_counter == 3)
            {
                $html .= '</div>';  // close the row 
                $tmp_counter = 0;   // reset the temporary counter 
                $count_rows ++; // increase number of rows
            }
        }

        $tmp_counter++;
    }
    if ($tmp_counter != 1){
        $html .= '</div>';  // close the last row
    }
    echo $html;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM