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



get_next_post_link › WordPress Function

Depuis3.7.0
Dépréciéen/a
get_next_post_link ( $format = '%link »', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
Paramètres: (5)
  • (string) $format Optional. Link anchor format. Default '« %link'.
    Requis: Non
    Défaut: '%link »'
  • (string) $link Optional. Link permalink format. Default '%title'.
    Requis: Non
    Défaut: '%title'
  • (bool) $in_same_term Optional. Whether link 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:
  • (string) The link URL of the next post in relation to the current post.
Défini(e) dans:
Codex:

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



Source

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 );
}