Wordpress |奇数/偶数交替的自定义帖子类型循环

时间:2017-08-19 08:26:09

标签: php wordpress

无法设法创建一个自定义的帖子类型循环,其中post由odd / even逻辑交替。代码有什么问题?

  <div class="row">

  <?php 

   $wpb_all_query = new WP_Query(array('post_type'=>'cesta', 'post_status'=>'publish', 'posts_per_page'=>-1)); ?>

    <?php if ( $wpb_all_query->have_posts() ) : ?>

      <?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); if(($i % 2) == 0) :  ?>

  <div class="col-sm-6">
    <h1><?php the_title(); ?></h1>  
    <?php the_content(); ?>
  </div>




  <?php else : ?>

  <div class="col-sm-6">
  <?php the_content(); ?>
  <h1><?php the_title(); ?></h1>
  </div>


    <?php endif; endwhile; endif; ?>

    </div>

0 个答案:

没有答案