I’d like to change the meta robot tag on my site to be noindex and nofollow. When I set the WP settings in “Search Engine Visibility” to “Discourage…”, it...
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 the WordPress code block however it...
after searching I didn’t find an answer still confused of how do I hide the -> wp-content –> uploads –> themes –> plugins -> wp-includes in browser. What I...
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 to change this? 2 Answers 2...
Just found this site via the WP-Hackers List, been using WordPress for years (make a living partially thanks to it) and never stumbled on this site! Posted this on...
I want to add nofollow attribute to only external links in the content of the post. Internal links should stay follow. So, can I use wp_rel_nofollow() to make only...
Is there one last filter that is ran over the widgets before they are sent out to the browser? I would like to add a filter that adds rel="nofollow"...
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', $content); } function my_nofollow_callback($matches) { $link...
By default whenever you disable indexing via Admin Settings [ x ] Discourage search engines from indexing this site It adds a meta tag in the header like so:...