How to add nofollow site-wide

I’d like to change the meta robot tag on my site to be noindex and nofollow. When I set the WP settings in “Search Engine Visibility” to “Discourage…”, it only generates:

<meta name="robots" content="noindex,follow" />

How can I change it to noindex and nofollow?

1 Answer
1

One part of removing your site from Google is to add <meta name="robots" content="noindex,follow" /> to every page. If you can edit the theme code then you could just add this to header.php (and any variants).

You could also use a plugin. I’ve not tested any, but https://wordpress.org/plugins/simple-robots-meta/ claims to do the job simply.

Leave a Comment