Yapacağımız işlem temamızın functions.php dosyasını notepad++ ile açarak aşağıda verilmiş olan fonksiyonları
<?php
satırından hemen sonraya yapıştırmaktır.
add_filter('the_content', 'blogizma_otomatik_nofollow');
function blogizma_otomatik_nofollow($content) {
return preg_replace_callback('/<a>]+/', 'blogizma_otomatik_nofollow_callback', $content);
}
function blogizma_otomatik_nofollow_callback($matches) {
$link = $matches[0];
$site_link = get_bloginfo('url');
if (strpos($link, 'rel') === false) {
$link = preg_replace("%(href=S(?!$site_link))%i", 'rel="nofollow" $1', $link);
} elseif (preg_match("%href=S(?!$site_link)%i", $link)) {
$link = preg_replace('/rel=S(?!nofollow)S*/i', 'rel="nofollow"', $link);
}
return $link;
}
Yukarıda verilmiş olan kodları functions.php dosyanızda belirtilen yere ekledikten sonra kaydedip tekrar FTP konumuna yüklemeniz yeterli olacaktır.
Shai Gilgeous-Alexander has emerged as a dominant basketball talent recognized throughout the professional world. Currently playing for the Oklahoma City…
Zoe Colletti, also known as Zoe Margeret Colletti is an American actress known for her roles in movies like “Annie”,”…
Savanna Woods is an American singer and songwriter who is currently a contestant on the American reality show The Voice…
American Idol fans already love 25-year-old Breanna Nix, who stays home to take care of her child before the season…
Mattie Pruitt embarks on her journey towards becoming a star at the young age of fifteen. Her powerful vocals, together…
Singer-songwriter Zaylie Windsor, who hails from Safford, Arizona, presents herself as an emerging force in the national music industry. Zaylie…
View Comments
çok beyendiyim veçok yardımcı olan bir porguram
cok faydalı bir bilgi elinize saglık