adjacent_post_link

函数


adjacent_post_link ( $format, $link, $in_same_term = false, $excluded_terms = '', $previous = true, $taxonomy = 'category' )
参数
  • (string)
    $format
    Link anchor format.
    Required:
  • (string)
    $link
    Link permalink format.
    Required:
  • (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 category IDs. Default empty.
    Required:
    Default: (empty)
  • (bool)
    $previous
    Optional. Whether to display link to previous or next post. Default true.
    Required:
    Default: true
  • (string)
    $taxonomy
    Optional. Taxonomy, if $in_same_term is true. Default ‘category’.
    Required:
    Default: ‘category’
定义位置
  • wp-includes/link-template.php
    , line 2344
引入
2.5.0
弃用

Displays the adjacent post link.

Can be either next post link or previous.

function adjacent_post_link( $format, $link, $in_same_term = false, $excluded_terms = '', $previous = true, $taxonomy = 'category' ) {
	echo get_adjacent_post_link( $format, $link, $in_same_term, $excluded_terms, $previous, $taxonomy );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。