adjacent_posts_rel_link_wp_head()

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


Description Description

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

See also See also


Top ↑

Source Source

File: wp-includes/link-template.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.