Manuel olarak href tagının içerisine
rel="nofollow" eklemek yeterli. Otomatik olarak yapmak istiyorsan aşağıdaki kod function'da uygun bir yere ekle ve site adını değiştir:
function add_nofollow_content($content) {
$content = preg_replace_callback(
'/]*href=["|\']([^"|\']*)["|\'][^>]*>([^<]*)<\/a>/i',
function($m) {
if (strpos($m[1], "https://www.wmarsiv.com") === false && strpos($m[1], "https://www.wmarsiv.com") === false)
return ''.$m[2].'';
else
return ''.$m[2].'';
},
$content);
return $content;
}
add_filter('the_content', 'add_nofollow_content');