銀河鉄道

【WordPress】ページネーションを作る関数|the posts pagination

サムネイル
シンプルページネーション
関数を使って
ページネーション
作りたい

ページネーションを設置したいところへ記述する

これだけでOK

<?php the_posts_pagination(array(
    'mid_size' => 1,
    'prev_text' => '前へ',
    'next_text' => '次へ',
    'screen_reader_text' => ''
)); ?>

mid_sizeは、現在ページの左右に表示するページ番号の数

the posts pagination

使い方 <?php the_posts_pagination( $args ); ?>

クラス名を変更したいとき

functions.phpに記述する

function custom_the_posts_pagination($template) {
    $template = '
    <nav class="(クラス名)" role="navigation">
    <section class="(クラス名)">
    <h2 class="screen-reader-text">%2$s</h2>
    %3$s
    </section>
    </nav>
    ';
    return $template;
}
add_filter('navigation_markup_template', 'custom_the_posts_pagination');

著者

author
月うさぎ

編集後記:
この記事の内容がベストではないかもしれません。

記事一覧