wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



get_next_post_link › WordPress Function

Desde3.7.0
Obsoleton/a
get_next_post_link ( $format = '%link »', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
Parâmetros: (5)
  • (string) $format Optional. Link anchor format. Default '« %link'.
    Required: No
    Padrão: '%link »'
  • (string) $link Optional. Link permalink format. Default '%title'.
    Required: No
    Padrão: '%title'
  • (bool) $in_same_term Optional. Whether link should be in the same taxonomy term. Default false.
    Required: No
    Padrão: false
  • (int[]|string) $excluded_terms Optional. Array or comma-separated list of excluded term IDs. Default empty.
    Required: No
    Padrão: (empty)
  • (string) $taxonomy Optional. Taxonomy, if `$in_same_term` is true. Default 'category'.
    Required: No
    Padrão: 'category'
Retorna:
  • (string) The link URL of the next post in relation to the current post.
Definido em:
Codex:

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



Fonte

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