如何风格5个不同的WordPress的岗位群

问题描述 投票:0回答:1

我试图在同一类添加到组5个职位

例如:

<div class="a">
 - article 1
 - article 2
 - article 3
 - article 4
 - article 5
  </div>
<div class="a">
 - article 6
 - article 7
 - article 8
 - article 9
 - article 10
  </div>

这是我的代码:

<?php $owl = new WP_Query(array( 'post_type'=>'post',
'post_status'=>'publish',
'orderby' => 'ID',
'order' => 'DESC',
 'posts_per_page'=> 10));
    ?>
 <?php $i = 0; while ($owl->have_posts()) : $owl->the_post(); ?>
<div class="a">
 <?php if($i < 6){ ?>
 <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a>
 <?php } ?></div>
 <div class="a">
<?php if($i > 5){ ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a>
  <?php } ?></div>
 <?php $i++; endwhile ; wp_reset_query() ;?>

它不工作,我想。我做错了吗?

任何帮助表示赞赏。

php wordpress styles
1个回答
2
投票

你可以试试这个?

<?php
    $owl = new WP_Query(array(
        'post_type'=>'post',
        'post_status'=>'publish',
        'orderby' => 'ID',
        'order' => 'DESC',
        'posts_per_page'=> 10
    ));
?>
<div class="a">
<?php $i = 0; while ($owl->have_posts()) : $owl->the_post(); ?>
<?php if($i == 6){ ?>
    </div>
    <div class="a">
<?php } ?>
    <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
        <?php the_title(); ?>
    </a>
<?php
    $i++;
    endwhile;
?>
</div>
<?php wp_reset_query(); ?>
© www.soinside.com 2019 - 2024. All rights reserved.