Добрый день. Как вывести по 9 постов и добавить навигацию?
<div class="gallery__items">
<?php
$args = array(
'post_type' =>'virtual',
'post_status' => 'publish',
'posts_per_page' => 9,
'order'=>'ASC',
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class="gallery__item">
<a href="<?php the_permalink(); ?>" target="_blank">
<div class="img"><?php the_post_thumbnail('panorama_thumb'); ?></div>
<div class="desc"><p><?php the_title()?></p></div>
</a>
</div>
<?php endwhile;
wp_reset_postdata();
?>
</div>
<!-- Навигация -->
<div class="pagination">
<?php
$navigation=array(
'prev_text' => __('« '),
'next_text' => __(' »'),
'show_all' => false,
);
echo paginate_links( $navigation );
?>
</div>