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



adjacent_posts_rel_link_wp_head › WordPress Function

Depuis3.0.0
Dépréciéen/a
adjacent_posts_rel_link_wp_head ( Pas de paramètres )
Voir:
Défini(e) dans:
Codex:
Changelog:
  • 5.6.0

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

This is meant to be attached to actions like 'wp_head'. Do not call this directly in plugins or theme templates.


Source

function adjacent_posts_rel_link_wp_head() {
	if ( ! is_single() || is_attachment() ) {
		return;
	}
	adjacent_posts_rel_link();
}