wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_next_post_link › WordPress Function

Since3.7.0
已弃用n/a
get_next_post_link ( $format = '%link »', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
参数: (5)
  • (string) $format Optional. Link anchor format. Default '« %link'.
    Required: No
    默认: '%link »'
  • (string) $link Optional. Link permalink format. Default '%title'.
    Required: No
    默认: '%title'
  • (bool) $in_same_term Optional. Whether link should be in the same taxonomy term. Default false.
    Required: No
    默认: false
  • (int[]|string) $excluded_terms Optional. Array or comma-separated list of excluded term IDs. Default empty.
    Required: No
    默认: (empty)
  • (string) $taxonomy Optional. Taxonomy, if `$in_same_term` is true. Default 'category'.
    Required: No
    默认: 'category'
返回:
  • (string) The link URL of the next post in relation to the current post.
定义在:
文档:

Retrieves the next post link that is adjacent to the current post.



源码

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