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



get_next_post_link › WordPress Function

Seit3.7.0
Veraltetn/v
get_next_post_link ( $format = '%link »', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
Parameter: (5)
  • (string) $format Optional. Link anchor format. Default '« %link'.
    Erforderlich: Nein
    Standard: '%link »'
  • (string) $link Optional. Link permalink format. Default '%title'.
    Erforderlich: Nein
    Standard: '%title'
  • (bool) $in_same_term Optional. Whether link 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:
  • (string) The link URL of the next post in relation to the current post.
Definiert in:
Codex:

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



Quellcode

function get_next_post_link( $format = '%link »', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
	return get_adjacent_post_link( $format, $link, $in_same_term, $excluded_terms, false, $taxonomy );
}