previous_post_link

函数


previous_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_previous_post_link()
定义位置
  • wp-includes/link-template.php
    , line 2223
引入
1.5.0
弃用

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

function previous_post_link( $format = '« %link', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
	echo get_previous_post_link( $format, $link, $in_same_term, $excluded_terms, $taxonomy );
}