Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的帖子属于赞助和其他多个类别。使用下一个按钮,我希望帖子仅出现在赞助类别中,而不是来自其他类别。
我尝试在next_post_link函数排除类别参数中排除其他类别,但没有奏效。
next_post_link
我们怎么能做到这一点?
在next_post_link函数中尝试也将参数设置in_same_cat为 true。
in_same_cat
来自法典:
<?php next_post_link('format', 'link', 'in_same_cat', 'excluded_categories'); ?>
范围:
in_same_cat (boolean) (可选) 指示下一篇文章是否必须与当前文章属于同一类别。如果设置为“true”,则仅显示当前类别的帖子。如果帖子同时属于父类别和子类别,或者多个类别,则下一个帖子链接将指向任何这些类别中的下一个帖子。
in_same_cat (boolean) (可选)
指示下一篇文章是否必须与当前文章属于同一类别。如果设置为“true”,则仅显示当前类别的帖子。如果帖子同时属于父类别和子类别,或者多个类别,则下一个帖子链接将指向任何这些类别中的下一个帖子。