Ask search engines not to index individual pages by checking an option in the publish post box.
| Author: | Radley Sustaire (profile at wordpress.org) |
| WordPress version required: | 3.2 |
| WordPress version tested: | 4.4.18 |
| Plugin version: | 1.0.1 |
| Added to WordPress repository: | 03-02-2016 |
| Last updated: | 03-02-2016
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
| Rating, %: | 90 |
| Rated by: | 6 |
| Plugin URI: | http://radgh.com/ |
| Total downloads: | 20 301 |
| Active installs: | 2 000+ |

Click to start download
|
Screenshots

The publish box when editing a page, the added checkbox is highlighted.

The source code for the page, the added meta tag is highlighted.
FAQ
Are there any advanced features, such as to block specific robots or add this code to archive/search pages?
No, this is just a simple plugin.
Can this be used for custom post types or posts?
Yes, with a bit of PHP. Just use the following code in your functions.php, which will add support for “post” and “product”:
function noindex_for_cpts( $post_types ) {
return $post_types + array( "post", "product" );
}
add_filter('noindex-pages-post-types', 'noindex_for_cpts');
ChangeLog
1.0.1
- Improved screenshot quality for wordpress.org
- Corrected “Tested up to” version number
- Corrected “Requires at least” version number
1.0.0
- First release
- Pre-release version notes can be found on Github