2012-02-04, 05:14:16
Or you could replace in your template:
by:
That is, if you also want the rest of the pages to have that meta.
Code:
<meta name="robots" content="index, follow" />
by:
Code:
<?php if (return_page_slug() == 'contact') { ?>
<meta name="robots" content="noindex, nofollow" />
<?php } else { ?>
<meta name="robots" content="index, follow" />
<?php } ?>
That is, if you also want the rest of the pages to have that meta.