Wordpress下一个帖子链接,没有按预期工作

时间:2015-05-12 12:17:04

标签: wordpress

我正在尝试从Wordpress下一个帖子链接中排除类别,并且在点击时仍会显示该类别。

<?php next_post_link('%link', ' ', TRUE, '1' and '2' and '3' and '8' and '9'); ?>

从这里开始:

https://codex.wordpress.org/Function_Reference/next_post_link

1 个答案:

答案 0 :(得分:0)

由于WordPress 3.3 AND已被弃用。现在这样做的正确方法是将它们放入数组中或用逗号分隔它们。

在你的情况下:

<?php next_post_link('%link', ' ', TRUE, '1, 2, 3, 8, 9'); ?>

<?php next_post_link('%link', ' ', TRUE, array(1, 2, 3, 8, 9)); ?>