One of my pages is a duplicate of one of my posts. Is there a way to make this page invisible for SEs? Thanks.
Edit you header file and use the . This will stop the page from being indexed but the links will be followed.
The problem is that I need only one page to be removed from the index. I don't want to edit the whole template.
Doh & shit that really would have de-indexed your whole site, sorry my bad. Use your robots.txt file to block the url from being crawled.
Thanks for your help. I thought maybe there's a plugin or something to do that Well, will have to mess with robots.txt
You should take a look at all-in-one-seo- pack/ it allows you to Use noindex for categories and archives. Im not sure what it is you want to noindex. if its only a single page maybe you could use some kind of "if statement" in the header meta tags.. Something like: <?php if (is_XXXXXX()) { ?> <meta name="robots" content="noindex,follow"> <?php } ?> PHP: