Adjacent links in wp_head() should only be generated for posts, not pages.

props alexander.rohmann.
fixes #21658.
Built from https://develop.svn.wordpress.org/trunk@28641


git-svn-id: http://core.svn.wordpress.org/trunk@28459 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2014-05-30 21:20:14 +00:00
parent 552d84a8a8
commit a8483f21e2
1 changed files with 2 additions and 1 deletions

View File

@ -1655,8 +1655,9 @@ function adjacent_posts_rel_link( $title = '%title', $in_same_term = false, $exc
*
*/
function adjacent_posts_rel_link_wp_head() {
if ( !is_singular() || is_attachment() )
if ( ! is_single() ) {
return;
}
adjacent_posts_rel_link();
}