wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_previous_post › WordPress Function

Depuis1.5.0
Dépréciéen/a
get_previous_post ( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
Paramètres: (3)
  • (bool) $in_same_term Optional. Whether post should be in the same taxonomy term. Default false.
    Requis: Non
    Défaut: false
  • (int[]|string) $excluded_terms Optional. Array or comma-separated list of excluded term IDs. Default empty.
    Requis: Non
    Défaut: (vide)
  • (string) $taxonomy Optional. Taxonomy, if `$in_same_term` is true. Default 'category'.
    Requis: Non
    Défaut: 'category'
Retourne:
  • (WP_Post|null|string) Post object if successful. Null if global `$post` is not set. Empty string if no corresponding post exists.
Défini(e) dans:
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 );
}