从Wordpress中的帖子导航中排除类别?

时间:2018-06-26 15:44:40

标签: wordpress post navigation categories codex

我希望从帖子导航中排除类别。最初,我查找了<?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>

谢谢!

0 个答案:

没有答案