2016-02-04 69 views
0

我是新來的WP和少量與自定義後循環內部div,這裏是我的代碼可以有人結構我砍在div。只有3個帖子應該在signle行中,但是journey_gallery_content只會重複,journey_gallery_row 不會重複。WordPress的自定義帖子div不正確的循環

<div class="journey_gallery_row"> 
     <?php 
       $loop=new WP_Query(array('post_type'=>'journeypackage', 
              'sort_column' => 'post_date', 
              'posts_per_page'=> -1 , 
              'order' => 'ASC') 
            ); 
       if ($loop->have_posts()) 
        { 
         while ($loop->have_posts()) 
          { 
         $loop->the_post(); 
         $meta=get_post_meta(get_the_id(),''); 
       ?> 
      <div class="journey_gallery_content"> 
        <?php echo get_the_post_thumbnail(); ?> 
       <div class="journey_package"> 
        <div class="journey_package_img"> 
         <?php 
        $attachment_id = get_field('package-icon'); 
        $size = "et-member-image-small"; 

        $image = wp_get_attachment_image_src($attachment_id, $size); 
        ?> 
        <img src="<?php echo $image[0]; ?>" /> 
        </div> 
        <div class="journey_package_name"> 
         <a href="<?php bloginfo('url')?>/journeytitle/enture/"><?php echo get_the_title(); ?></a> 
         <p class ="">Date : <?php the_field('package-date'); ?> </p> 

        </div> 

       </div> 

      </div> 
      <?php } 
      }?> 
      </div> 
     </div> 
    </div> 
</div> 

回答

0

使用current_post檢查

這應該讓每個3個員額投入the journey_gallery_row

<?php 
       $loop=new WP_Query(array('post_type'=>'journeypackage', 
              'sort_column' => 'post_date', 
              'posts_per_page'=> -1 , 
              'order' => 'ASC') 
            ); 
       if ($loop->have_posts()){?> 
        <div class="journey_gallery_row"> 
         <?php 
         while ($loop->have_posts()) 
          { 
         $loop->the_post(); 
         $meta=get_post_meta(get_the_id(),''); 

       ?> 


          <div class="journey_gallery_content"> 
        <?php echo get_the_post_thumbnail(); ?> 
       <div class="journey_package"> 
        <div class="journey_package_img"> 
         <?php 
        $attachment_id = get_field('package-icon'); 
        $size = "et-member-image-small"; 

        $image = wp_get_attachment_image_src($attachment_id, $size); 
        ?> 
        <img src="<?php echo $image[0]; ?>" /> 
        </div> 
        <div class="journey_package_name"> 
         <a href="<?php bloginfo('url')?>/journeytitle/enture/"><?php echo get_the_title(); ?></a> 
         <p class ="">Date : <?php the_field('package-date'); ?> </p> 

        </div> 

       </div> 
</div> 
      <?php if($loop->current_post % 3 == 2) echo '</div>'."\n".'<div class="journey_gallery_row">'; ?> 
      <?php } 
      }?> 
+0

我用你的答案得到了確切的結果。 –

0

我認爲你需要在與循環的結束一個變量,增量環添加自定義的檢查,該變量會檢查是否等於行限制的限制則反而會加重關閉舊的行div並在內容div之前添加新的行div。可能是這樣的。

<div class="journey_gallery_row"> 
    <?php 
      $loop=new WP_Query(array('post_type'=>'journeypackage', 
             'sort_column' => 'post_date', 
             'posts_per_page'=> -1 , 
             'order' => 'ASC') 
           ); 
      if ($loop->have_posts()) 
       { 
       $num = 1; 
        while ($loop->have_posts()) 
         { 
        $loop->the_post(); 
        $meta=get_post_meta(get_the_id(),''); 
        if($num%4==0){echo '</div><div class="journey_gallery_row">';} 
      ?> 

     <div class="journey_gallery_content"> 
       <?php echo get_the_post_thumbnail(); ?> 
      <div class="journey_package"> 
       <div class="journey_package_img"> 
        <?php 
       $attachment_id = get_field('package-icon'); 
       $size = "et-member-image-small"; 

       $image = wp_get_attachment_image_src($attachment_id, $size); 
       ?> 
       <img src="<?php echo $image[0]; ?>" /> 
       </div> 
       <div class="journey_package_name"> 
        <a href="<?php bloginfo('url')?>/journeytitle/enture/"><?php echo get_the_title(); ?></a> 
        <p class ="">Date : <?php the_field('package-date'); ?> </p> 

       </div> 

      </div> 

     </div> 
     <?php $num++; 
     } 
     }?> 
     </div> 
    </div> 
</div> 

嘗試這樣的事情。

+0

由於作品般的魅力,有一個愉快的一天。 另外我有日期選擇器自定義字段 日期:20160203另一個問題,日期被格式化爲這樣,它沒有得到改變。我正在使用高級自定義字段,我希望日期格式爲Date:2016/02/03 –

+0

可能會在plugin中設置日期格式化的一些設置。如果沒有,則可能是插件的任何鉤子。 –