我希望从帖子导航中排除类别。最初,我查找了<?php the_post_navigation(); ?>
来排除类别,但是我读过的几篇文章(like this)却使我倾向于使用<?php previous_post_link(); ?>
和<?php next_post_link(); ?>
。
这是到目前为止我整理的内容:
<div class="left col-6">
<h5>Previous Post</h5>
<small><?php previous_post_link('%link', '%title', $excluded_terms); ?> </small>
</div>
<div class="right col-6 text-right">
<h5>Next Post</h5>
<small><?php next_post_link('%link', '%title', $excluded_terms); ?> </small>
</div>
使用$excluded_terms = '463';
我遇到的问题是,这仅循环显示一个帖子类别,并且不包括属于463类别的该帖子类别。我正尝试循环浏览除类别463之外的所有帖子类别。 / p>
谢谢!