Всего 160 постов, выводятся по 20 с помощью WP_Query
<? $args = array( 'posts_per_page' => 20, 'cat' => 5,);?>
<? $query = new WP_Query( $args );?>
<? while ( $query->have_posts() ) {?>
<? $query->the_post();?>
<div><?php the_time('d.m.Y'); ?>
<a href="<?php the_permalink(); ?>"><? the_title(); ?></a>
</div>
<? }?>
<? wp_reset_postdata(); ?>
Как вывести пагинацию?