我有我的cutom post taxonomy,这是term_taxonomy_id(它是对自定义帖子类别ID的引用),并且想要提供上一个/下一个帖子链接但是
<?php while ( have_posts() ) : the_post();
next_post_link('%link','Next post',true,'','id');
endwhile; ?>
根本不起作用(它不会在结果页面中显示任何代码)。
删除最后三个参数后:
next_post_link('%link','Next post');
显示链接没有问题(但它当然不在同一个分类中,我对此并不感兴趣)。
Wordpress版本当然是3.8。 你知道问题出在哪里吗?