我正在尝试从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
答案 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)); ?>