固定ページでパーマリンクを変更していない場合のページャーの書き方を紹介します。
<div id=”pager”>
<?php
if ($the_query->max_num_pages > 1) {
echo paginate_links(array(
‘base’ => get_pagenum_link(1) . ‘%_%’,
‘format’ => ‘&paged=%#%’,
‘current’ => max(1, $paged),
‘total’ => $the_query->max_num_pages
));
}
?>
<?php wp_reset_postdata(); ?>
</div>
get_pagenum_linkでページャーの番号を収得し、
‘&paged=%#%’,でリンクを付与しています。