get_next_post

函数
get_next_post ( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
参数
  • (bool) $in_same_term Optional. Whether post should be in a same taxonomy term. Default false.
    Required:
    Default: false
  • (int[]|string) $excluded_terms Optional. Array or comma-separated list of excluded term IDs. Default empty.
    Required:
    Default: (empty)
  • (string) $taxonomy Optional. Taxonomy, if $in_same_term is true. Default 'category'.
    Required:
    Default: 'category'
返回值
  • (WP_Post|null|string) Post object if successful. Null if global $post is not set. Empty string if no corresponding post exists.
定义位置
相关方法
get_next_post_linknext_postget_next_posts_linknext_postsget_post
引入
1.5.0
弃用
-

get_next_post函数用于检索同一类别中相对于当前文章的下一个文章对象: 这个函数可以用来生成一个系列中的下一个文章的链接,或者用来创建一个文章导航菜单。

检索与当前文章相邻的下一个文章。

function get_next_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
	return get_adjacent_post( $in_same_term, $excluded_terms, false, $taxonomy );
}

常见问题

FAQs
查看更多 >