gakkos23 adlı üyeden alıntı:
mesajı görüntüle
144
●14.662
/*
Plugin Name: NoFollow Yap.
*/
function rel_nofollow($icerik) {
$yazi = $icerik;
preg_match_all("/<a.*? href=\"(.*?)\".*?>(.*?)<\/a>/i", $yazi, $es);
for($i=0;$i<count($es[0]);$i++){
if(!preg_match("/rel=[\"\']*nofollow[\"\']*/",$es[0][$i])){
if(ereg(' rel="*dofollow*"', $icerik)){
}else{
if(!ereg(' rel="', $icerik)){
preg_match_all("/<a.*? href=\"(.*?)\"(.*?)>(.*?)<\/a>/i", $es[0][$i], $es1);
$yazi = str_replace(">".$es1[3][0]."</a>"," rel=\"nofollow\">".$es1[3][0]."</a>",$yazi);
}else{
$yazi = str_replace('rel="', 'rel="nofollow ', $yazi);
}
}
}
}
return $yazi;
}
add_filter('the_content', 'rel_nofollow');