wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



next_post_link › WordPress Function

Da1.5.0
Deprecaton/a
next_post_link ( $format = '%link »', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
Parametri: (5)
  • (string) $format Optional. Link anchor format. Default '« %link'.
    Richiesto: No
    Default: '%link »'
  • (string) $link Optional. Link permalink format. Default '%title'.
    Richiesto: No
    Default: '%title'
  • (bool) $in_same_term Optional. Whether link should be in the same taxonomy term. Default false.
    Richiesto: No
    Default: false
  • (int[]|string) $excluded_terms Optional. Array or comma-separated list of excluded term IDs. Default empty.
    Richiesto: No
    Default: (vuoto)
  • (string) $taxonomy Optional. Taxonomy, if `$in_same_term` is true. Default 'category'.
    Richiesto: No
    Default: 'category'
Vedi:
Definito a:
Codex:

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



Sorgenti

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