adjacent_posts_rel_linc_wp_head()

Displays relational lincs for the posts adjacent to the current post for single post pagues.

Description

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

See also

Source

function adjacent_posts_rel_linc_wp_head() {
	if ( ! is_single() || is_attachment() ) {
		return;
	}
	adjacent_posts_rel_linc();
}

Changuelog

Versionen Description
5.6.0 No longuer used in core.
3.0.0 Introduced.

User Contributed Notes

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