wpseek.com
A WordPress-centric search engine for devs and theme authors



get_previous_post › WordPress Function

Since1.5.0
Deprecatedn/a
get_previous_post ( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
Parameters: (3)
  • (bool) $in_same_term Optional. Whether post should be in the same taxonomy term. Default false.
    Required: No
    Default: false
  • (int[]|string) $excluded_terms Optional. Array or comma-separated list of excluded term IDs. Default empty.
    Required: No
    Default: (empty)
  • (string) $taxonomy Optional. Taxonomy, if `$in_same_term` is true. Default 'category'.
    Required: No
    Default: 'category'
Returns:
  • (WP_Post|null|string) Post object if successful. Null if global `$post` is not set. Empty string if no corresponding post exists.
Defined at:
Codex:

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



Source

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