I created a static page for link exchanges but I want to set it to noindex/nofollow! How do I do this? This is a self-hosted wordpress blog.
| SitePoint Sponsor |
I created a static page for link exchanges but I want to set it to noindex/nofollow! How do I do this? This is a self-hosted wordpress blog.
Use rel="external nofollow" attributes in your external hyperlinks.
you can nofollow it in your .htaccess file. google it for the tutorial and code.
http://www.vectorsonfire.com - free cool vectors, download now

This goes in the <head> section (most likely header.php)Change "page_slug" to the name of your pages slug.Code PHP:<?php if ( is_page('page_slug') ) { ?> <meta name="robots" content="noindex,nofollow" /> <?php } ?>
Bookmarks