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



adjacent_posts_rel_link › WordPress Function

Seit2.8.0
Veraltetn/v
adjacent_posts_rel_link ( $title = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' )
Parameter: (4)
  • (string) $title Optional. Link title 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'
Definiert in:
Codex:

Displays the relational links for the posts adjacent to the current post.



Quellcode

function adjacent_posts_rel_link( $title = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
	echo get_adjacent_post_rel_link( $title, $in_same_term, $excluded_terms, true, $taxonomy );
	echo get_adjacent_post_rel_link( $title, $in_same_term, $excluded_terms, false, $taxonomy );
}