这个$taxonomy
两者的参数next_post_link
和previous_post_link
在Wordpress版本3.8中引入。
当$in_same_term
参数设置为true,您需要设置$taxonomy
所需分类的参数。默认情况下,它设置为category
. 回想起post_format
也是一种分类法
示例:
next_post_link( \'%link\', \'Next post in category\', TRUE, \' \', \'post_format\' );
只是一个注释,不要使用
next_post
和
previous_post
. 从Wordpress版本2.0.0开始,它已经被折旧了。看见
wp-includes/deprecated.php#L121 和
wp-includes/deprecated.php#L158EDIT
单个帖子链接将在同一帖子类型内的帖子之间自动分页,因为当前帖子的帖子类型用于检索相邻帖子。检查源代码,
get_adjacent_post()
它被下一个和上一个帖子链接使用。请特别注意第1550行(目前适用于4.1版)
1550 $where = apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare( "WHERE p.post_date $op %s AND p.post_type = %s AND p.post_status = \'publish\' $where", $current_post_date, $post->post_type ), $in_same_term, $excluded_terms );