get_previous_post_link

函数
get_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'
返回值
  • (string) The link URL of the previous post in relation to the current post.
定义位置
相关方法
get_previous_posts_linkprevious_post_linkget_previous_posts_page_linkget_preview_post_linkprevious_posts_link
引入
3.7.0
弃用
-

get_previous_post_link函数是一个WordPress函数,用于检索特定文章类型的前一个文章链接: 这个函数需要一个关于文章类型的可选参数,并返回先前的文章链接。

检索与当前文章相邻的前一个文章链接。

function get_previous_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, true, $taxonomy );
}

常见问题

FAQs
查看更多 >