我想从帖子导航中排除一个类别。起初,我抬头看了看<?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类之外的所有帖子类别。有什么想法?
提前感谢!