Archived topic
How to noindex media pages?
5 replies · Started by Hugo on May 29, 2022
Hey there,
So my site is automatically creating all these media pages for some reason. I don't want them in the index because they're just a URL with an image and that
s all.
How do I mass noindex media URLs like the following example?
Thanks.
Hi there,
try adding this PHP Snippet:
add_action('wp_head', function(){
if ( is_attachment() ) {
echo '<meta name="robots" content="noindex">';
}
});
Hey Dave,
Just wondering what should this PHP snippet go?
Hi Hugo,
To clarify, are you referring to how to add this Snippet?
If so, here is an article you may refer to: https://docs.generatepress.com/article/adding-php/#code-snippets
Specifically, it may be added through a plugin like Code Snippets.
If you’re referring to something else, kindly let us know.
Thanks That worked.
You’re welcome Hugo!