Я пытаюсь добавить тот же класс в группу из 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() ;?>
Этоне работает как хотелось бы.Что я делаю не так?
Любая помощь приветствуется.