在WordPress中,可以使用next_post_link()和previous_post_link()函数来显示下一篇和上一篇文章的链接。如果想要排除某些特定类别的文章,可以通过修改函数的参数来实现。
具体步骤如下:
<?php next_post_link('Next: %link', 'Next post', true, '', 'excluded_categories=1,2'); ?>
<?php previous_post_link('Previous: %link', 'Previous post', true, '', 'excluded_categories=1,2'); ?>
如果要排除slug为'uncategorized'的类别,可以这样修改函数调用:
<?php next_post_link('Next: %link', 'Next post', true, '', 'excluded_categories=uncategorized'); ?>
<?php previous_post_link('Previous: %link', 'Previous post', true, '', 'excluded_categories=uncategorized'); ?>
需要注意的是,excluded_categories参数可以接受多个类别ID或slug,用逗号分隔。如果要排除多个类别,可以像上面的示例一样在参数中指定多个ID或slug。
此外,关于WordPress的next_post_link()和previous_post_link()函数的更多信息,你可以参考腾讯云的WordPress产品文档:WordPress产品文档链接。
领取专属 10元无门槛券
手把手带您无忧上云