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.
Laura Donnelly is an Irish actress famously known for her roles in The Nevers, Outlander, and the Fall. She is…
Wyatt Pike is a young American singer who is just 20 years old. Pike is famous to the world for…
Desiree Lindstrom is the fiancée of American rapper and actor Earl Simmons or also known by his stage name DMX.…
The American Idol Season 23 has witnessed Canaan James Hill rise to become one of its most noteworthy vocal talents.…
Gabby Samone from Baltimore, Maryland, maintains her position as a top performer on American Idol season 2025 through her powerful…
A 31-year-old software engineer named Kamilla Karthigesu from Toronto Canada has joined Survivor 48 with her strategic thinking and dynamic…
View Comments
çok beyendiyim veçok yardımcı olan bir porguram
cok faydalı bir bilgi elinize saglık