Site logo

Archived topic

How to noindex media pages?

5 replies · Started by Hugo on May 29, 2022

Viewing posts 1–6 of 6

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?

Thanks That worked.

You’re welcome Hugo!

This archived topic is closed to new replies.