next_post_link

函数
next_post_link ( $format = '%link »', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
参数
  • (string) $format Optional. Link anchor format. Default '« %link'.
    Required:
    Default: '%link »'
  • (string) $link Optional. Link permalink format. Default '%title'
    Required:
    Default: '%title'
  • (bool) $in_same_term Optional. Whether link 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'
相关
  • get_next_post_link()
定义位置
相关方法
next_posts_linkget_next_post_linknext_post_rel_linkedit_post_linkget_next_posts_link
引入
1.5.0
弃用
-

next_post_link: 这个函数在循环中生成一个指向下一个文章的链接。它接受几个参数来定制链接的文本、格式和其他属性。

显示与当前文章相邻的下一个文章链接。

function next_post_link( $format = '%link »', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
	echo get_next_post_link( $format, $link, $in_same_term, $excluded_terms, $taxonomy );
}

常见问题

FAQs
查看更多 >