How to add nofollow site-wide
I’d like to change the meta robot tag on my site to be noindex and nofollow. When I set the WP settings in … Read more
I’d like to change the meta robot tag on my site to be noindex and nofollow. When I set the WP settings in … Read more
The directives below are intended to apply the header X-Robots-Tag noindex and nofollow to a single page. The directives below are applied before … Read more
after searching I didn’t find an answer still confused of how do I hide the -> wp-content –> uploads –> themes –> plugins … Read more
In wp-login.php default is: <meta name=”robots” content=”noindex,follow”> I want to change it to: <meta name=”robots” content=”noindex,nofollow”> Is there an easy way or script … Read more
Just found this site via the WP-Hackers List, been using WordPress for years (make a living partially thanks to it) and never stumbled … Read more
I want to add nofollow attribute to only external links in the content of the post. Internal links should stay follow. So, can … Read more
Is there one last filter that is ran over the widgets before they are sent out to the browser? I would like to … Read more
Hello guys i am using following code to make all external links nofollow. add_filter(‘the_content’, ‘my_nofollow’); add_filter(‘the_excerpt’, ‘my_nofollow’); function my_nofollow($content) { return preg_replace_callback(‘/<a[^>]+/’, ‘my_nofollow_callback’, … Read more
By default whenever you disable indexing via Admin Settings [ x ] Discourage search engines from indexing this site It adds a meta … Read more