wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_next_post › WordPress Function

Seit1.5.0
Veraltetn/v
get_next_post ( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
Parameter: (3)
  • (bool) $in_same_term Optional. Whether post should be in the same taxonomy term. Default false.
    Erforderlich: Nein
    Standard: false
  • (int[]|string) $excluded_terms Optional. Array or comma-separated list of excluded term IDs. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (string) $taxonomy Optional. Taxonomy, if `$in_same_term` is true. Default 'category'.
    Erforderlich: Nein
    Standard: 'category'
Gibt zurück:
  • (WP_Post|null|string) Post object if successful. Null if global `$post` is not set. Empty string if no corresponding post exists.
Definiert in:
Codex:

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



Quellcode

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