Avoiding Duplicate Titles in WordPress Media Attachments
Looking through Google Webmaster tools, I discovered a warning about duplicate title tags coming from WordPress media attachment pages, like this one.
Here is a quick fix (place inside the
of header.php:
<?php if ( is_attachment() ) { ?>
<meta name="robots" content="noindex, nofollow" />
<?php } ?>
You can also adjust your title tag, to include some sort of prefix, like this:
<title>
<?php if ( is_attachment() ) { ?>Attachment: <?php } ?>
<!-- include your normal title stuff here -->
</title>
