web-dev-qa-db-ja.com

同じカテゴリ内でのみ前/次の投稿ナビゲーションを表示

前の/次のナビゲーションに、同じカテゴリ内にある(前後にある)投稿を強制的にブラウズする(そして他のカテゴリを除外する)ことを強制することは可能ですか?

3
Bloglimits

functions$in_same_cat引数を受け取ります。デフォルト値はfalseです。それをtrueに設定するだけです。

previous_post_link($format, $link, true);
next_post_link($format, $link, true);
5
Amit Sharma

Single.phpループで次のコードを使用して、同じカテゴリのnex/preリンクを表示できます

<?php


get_template_part( 'content', get_post_format() );

 // Previous/next post navigation.
previous_post_link('%link', 'Before', true );
next_post_link( '%link', 'Next', true );

?>
0
Mortzea