Don't generate adjacent links in wp_head() for attachments.

props kovshenin.
fixes #21658.

git-svn-id: https://develop.svn.wordpress.org/trunk@28770 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2014-06-18 00:04:14 +00:00
parent 566fd5da8d
commit 550d0f0aea
1 changed files with 1 additions and 1 deletions

View File

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