前の/次のナビゲーションに、同じカテゴリ内にある(前後にある)投稿を強制的にブラウズする(そして他のカテゴリを除外する)ことを強制することは可能ですか?
functions は$in_same_cat
引数を受け取ります。デフォルト値はfalseです。それをtrueに設定するだけです。
previous_post_link($format, $link, true);
next_post_link($format, $link, true);
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 );
?>