記事一覧の最大表示数を変更(デフォルト10)
<?php query_posts('posts_per_page=5'); ?>
最新記事5つだけ取得
記事一覧の前後ページリンクを追加
<?php the_posts_navigation(); ?>
次のページ・前のページが表示される
<?php if ( have_posts() ) : ?>
<?php while( have_posts() ) : the_post(); ?>
<section class="post-item">
<!-- タイトルを出力 -->
<h2><?php the_title(); ?></h2>
<!-- 記事コンテンツを出力 -->
<?php the_content(); ?>
</section>
<?php endwhile;?>
<!--前後リンクの追加-->
<?php the_posts_navigation(); ?>
前後ページ番号付きリンクの追加
<?php the_posts_pagination(); ?>
使用方法は前後ページリンクと同じ
シングルページでの前後ページリンク
<?php the_post_navigation(); ?>
※注意※
query_posts を指定しているページでpost_navigation等を使用するとバグる。。。。
対処法がないか模索中。