IT Nursery
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...
  • May 29, 2022
  • 0 Comments
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...
  • May 14, 2022
  • 0 Comments
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"...
  • May 8, 2022
  • 0 Comments
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...
  • May 8, 2022
  • 0 Comments
IT Nursery
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:...
  • April 30, 2022
  • 0 Comments