wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_previous_post › WordPress Function

Since1.5.0
已弃用n/a
get_previous_post ( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
参数: (3)
  • (bool) $in_same_term Optional. Whether post should be in the same taxonomy term. Default false.
    Required: No
    默认: false
  • (int[]|string) $excluded_terms Optional. Array or comma-separated list of excluded term IDs. Default empty.
    Required: No
    默认: (empty)
  • (string) $taxonomy Optional. Taxonomy, if `$in_same_term` is true. Default 'category'.
    Required: No
    默认: 'category'
返回:
  • (WP_Post|null|string) Post object if successful. Null if global `$post` is not set. Empty string if no corresponding post exists.
定义在:
文档:

Retrieves the previous post that is adjacent to the current post.



源码

function get_previous_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
	return get_adjacent_post( $in_same_term, $excluded_terms, true, $taxonomy );
}