Noindex Posts From Certain Authors In Wordpress
I'm trying to noindex posts from all authors EXCEPT 3 authors on my Wordpress site.
I found the following code that I can put into the header.php file. However, this targets specific categories.
?php if (is_single() (in_category(array(457)))) {
echo 'meta name="robots" content="noindex, follow"';
} ?
How do I modify this to say something like, if is single post and is NOT an author with ID 111, 112, or 113 then insert noindex, follow. Would the following be correct?:
?php if (is_single() !(is_author(array(111,112,113)))) {
echo 'meta name="robots" content="noindex, follow"';
} ?