WP Eklentisinin Reklamını Silmek?
-
Merhaba lan arkadaşlar
Eklenti bu: http://wordpress.org/extend/plugins/nofollow-reciprocity/
Bu eklentiyi kurduğumuzda sitenin en altına şöyle bir yazı ekleniyor:
Improve the web with Nofollow Reciprocity.
Bunu kaldırmak için hemen editörden bakıverdim. Kodlar normal html kodu gibi değildi. <a href felan gibi değildi. Anlamadığım şeyler olduğu için ellemeden size sorayım dedim.
İlgili kodlar: (Biraz geniş bir şekilde veriyorum)
{
$pattern = '/<a (.*?)href=[\"\'](.*?)\/\/(.*?)[\"\'](.*?)>(.*?)<\/a>/i';
$text = preg_replace_callback($pattern,'parse_nofollow_reciprocity',$text);
return $text;
}
// filters have high priority to make sure that any markup plugins like Textile or Markdown have already created the HTML links
add_filter('the_content', 'wp_nofollow_reciprocity', 10);
add_filter('the_excerpt', 'wp_nofollow_reciprocity', 10);
// delete this one if you don't want it run on comments
add_filter('comment_text', 'wp_nofollow_reciprocity', 10);
//add_filter('get_comment_author_link', 'wp_nofollow_reciprocity', 999);
function wp_nofollow_reciprocity_awareness() {
global $wp_nr_footer_link;
if($wp_nr_footer_link)echo ('<div style="font-size:85%;clear:both;text-align:center;margin-top:20px;position:relative;color:#555;">Improve the web with <a href="http://www.inverudio.com/programs/WordPressBlog/NofollowReciprocity.php">Nofollow</a> <em>Reciprocity</em>.</div>');
}
if(function_exists('get_footer'))add_filter('get_footer', 'wp_nofollow_reciprocity_awareness',10);
else add_action('wp_footer', 'wp_nofollow_reciprocity_awareness',10);
?>
<?php add_filter('get_comment_author_link', 'wp_nofollow_reciprocity', 999); ?>Nereyi kırpmam lazım?
-
function wp_nofollow_reciprocity_awareness() {
global $wp_nr_footer_link;
if($wp_nr_footer_link)echo ('<div style="font-size:85%;clear:both;text-align:center;margin-top:20px;position:relative;color:#555;">Improve the web with <a href="http://www.inverudio.com/programs/WordPressBlog/NofollowReciprocity.php">Nofollow</a> <em>Reciprocity</em>.</div>');
}
if(function_exists('get_footer'))add_filter('get_footer', 'wp_nofollow_reciprocity_awareness',10);
else add_action('wp_footer', 'wp_nofollow_reciprocity_awareness',10);Ahada burası olması lazım
-
Hacı eminsin di mi? La şimdi if mif diyor. Eğer linki silersek eklentinin çalışmama gibi bir ihtimali olabilir mi acep?
-
diamonique bunu yazdı:
-----------------------------Hacı eminsin di mi? La şimdi if mif diyor. Eğer linki silersek eklentinin çalışmama gibi bir ihtimali olabilir mi acep?
-----------------------------Birşey olmaz ama istersen sadece alttaki yazıyı silebilirsin de.
Improve the web with <a href="http://www.inverudio.com/programs/WordPressBlog/NofollowReciprocity.php">Nofollow</a> <em>Reciprocity</em>.
