Dear developers,
First of all, thank you for a wonderful plug-in.
Can I suggest you to add a small feature, in particular
make possible is_paged() and is_404() be "noindex,follow" ?
I think it could make WordPress blogs more SEO friendly and exclude indexing what is on particular pages of posts/categories lists (which changes always!).
Thank you in advance.
p/s/ That's what I manually add to the header to have this functionality:
<?php if ( is_paged() || is_404() ) { ?>
<meta name="robots" content="noindex, follow" />
<?php } ?>