get_next_post_link

函式
get_next_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 next post in relation to the current post.
定義位置
相關方法
get_next_posts_linkget_edit_post_linknext_post_linkget_next_posts_page_linknext_posts_link
引入
3.7.0
棄用
-

get_next_post_link函式用於生成指向與當前文章相同類別的下一個文章的連結: 這個函式可用於建立一個文章導航選單。

檢索與當前文章相鄰的下一個文章連結。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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 );
}
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 ); }
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 );
}

常見問題

FAQs
檢視更多 >