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



next_post_rel_link › WordPress Function

Since2.8.0
已弃用n/a
next_post_rel_link ( $title = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
参数: (4)
  • (string) $title Optional. Link title 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'
查看:
定义在:
文档:

Displays the relational link for the next post adjacent to the current post.



源码

function next_post_rel_link( $title = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
	echo get_adjacent_post_rel_link( $title, $in_same_term, $excluded_terms, false, $taxonomy );
}