get_previous_post

函式
get_previous_post ( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
引數
  • (bool) $in_same_term Optional. Whether post 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'
返回值
  • (WP_Post|null|string) Post object if successful. Null if global $post is not set. Empty string if no corresponding post exists.
定義位置
相關方法
previous_postget_previous_post_linkget_previous_posts_linkprevious_postsget_previous_posts_page_link
引入
1.5.0
棄用
-

get_previous_post函式是WordPress的一個函式,用於檢索一個特定文章型別的前一個文章物件: 這個函式需要一個關於文章型別的可選引數,並返回前一個文章物件。

檢索與當前文章相鄰的上一篇文章。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function get_previous_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
return get_adjacent_post( $in_same_term, $excluded_terms, true, $taxonomy );
}
function get_previous_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) { return get_adjacent_post( $in_same_term, $excluded_terms, true, $taxonomy ); }
function get_previous_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
	return get_adjacent_post( $in_same_term, $excluded_terms, true, $taxonomy );
}

常見問題

FAQs
檢視更多 >