WordPress 投稿ページ記事前後リンクをカテゴリー別に表示させる
記事前後リンクをカテゴリー別に表示
ブログページの記事の下にある、前後へのページへリンク↓↓を各カテゴリーごとの記事が出るように設定します。
<?php previous_post_link('« %link', '%title', true , ''); ?>//前の記事へ
<?php next_post_link('%link »', '%title', true , ''); ?>//次の記事へ
第1引数に直接タグ「<i class="fa fa-caret-left" aria-hidden="true"><i> 」を書き込み、第3引数の「true」で同じカテゴリに絞ったページリンクを付けることができるようになります。
<?php previous_post_link('<i class="fa fa-caret-left" aria-hidden="true"></i> %link', '%title', true , ''); ?>
<?php next_post_link('%link<i class="fa fa-caret-right" aria-hidden="true"></i>', '%title', true , ''); ?>