カスタム投稿のアーカイブでページネーションが動かない時

アーカイブのテンプレートで
$args = arrayに
'paged' => $paged,
の記述をつける必要がある場合もある

ページネーション、ループ外に設置
    <?php
$args = array(
    'mid_size' => 1, // 表示されるリンクの数
    'screen_reader_text' => ' ',
    'total' => $query->max_num_pages, // 次のページがないときは表示しない
    'prev_text' => '&lt;&lt;前へ',
    'next_text' => '次へ&gt;&gt;',

    'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))),
    'show_all' => true,
    'type' => 'list',
    'format' => '?paged=%#%',
    'current' => max(1, get_query_var('paged')),

);
the_posts_pagination($args);
    ?>
Spread the love
2023.09.14(木)