wp sitemde eklebunu.com butonu kullanıyorum. fakat buton anasayfada her konunun altında görünüyor. ben sadece konu sayfalarının altında görünmesini, yani ansayfadaki konuların altında görünmesini istemiorum. kod aşağıda. yardımlarınızı bekliyorum.

<?php
/*
Plugin Name: EkleBunu Sosyal Buton
Plugin URI: http://www.eklebunu.com
Description: Ziyaretçilerinize sayfanızı link paylaşım sitelerine eklemeyi kolaylaştırın! Bu buton sayesinde, bütün link paylaşım (bookmark) sitelerine kolayca ekleme imkanı tanıyın...
Version: 1.0
Author: EkleBunu.com
Author URI: http://www.eklebunu.com
*/

class eklebunu_buton{



  //=====================================
  //İstatistik istiyorsanız lütfen EkleBunu.com kullanıcı adınızı aşağıdaki kısma yazın ($eklebunu_kullanici = "ali" şeklinde...)

    var $eklebunu_kullanici = "aa";
  //===================================== 




  function eklebunu_buton(){
     add_filter('the_content', array(&$this, 'sosyal_buton'));
  }

  function sosyal_buton_hazirla($content){  

     for ($i=0; $i<10; $i++){
         $content .= $this->sosyal_buton_gonder($i);
     }
     return $content;
  }

  function sosyal_buton($content){  
     $link  = urlencode(get_permalink());
     $title = urlencode(get_the_title($id));

     return $content . $this->sosyal_buton_bilgi($link, $title);
  }

  function sosyal_buton_gonder($entry){
     $link  = urlencode(get_permalink());
     $title = urlencode(get_the_title($id));
     if (!isset($link)){
       $widget_post  = $this->sosyal_buton_bilgi($link, $title);
       $widget_post .= $this->sosyal_buton_eklebunu($entry);
     }
     return $widget_post;
  }


  function sosyal_buton_bilgi($link, $title){
    $kull = $this->eklebunu_kullanici;
    return "<div><a href=\"http://www.eklebunu.com/ekle.php\" onclick=\"window.open('http://www.eklebunu.com/ekle.php?k=$kull&amp;u=$link&amp;t=$title', 'eklebunu', 'scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no'); return false;\" title=\"Tüm link paylaşım sitelerine ekleyin!\" target=\"_blank\"><img src=\"http://www.eklebunu.com/buton.php?bt=2&k=$kull\" width=\"125\" height=\"16\" border=\"0\" alt=\"EkleBunu Sosyal Paylaşım Butonu\" /></a></div>";
  }


  function sosyal_buton_eklebunu($i){
     add_filter('the_content', array(&$this, 'sosyal_buton'));
     $content = $this->sosyal_buton($content);

     $cut = explode("|", $content);
     $post = $cut[0];
     $link  = $cut[1]; 
     return $content . "<br />$link";
  }

}

$eklebunu &= new eklebunu_buton();

?>