• 17-01-2014, 22:27:01
    #10
    Api ayarları falan biraz zor ama gayet güzel calışıyor son zamanlarda G+ da biraz sorun cıkardı onun haricinde güzel.

    Pro versiyonu çok daha kaliteli, ücretsiz versiyonunda kısıtlı sitede paylaşım yapıyor
  • 17-01-2014, 23:53:14
    #11
    Daha önce buna benzer bir eklenti olan onlywire.com 'un eklentisini premium olarak alıp 6 aya yakın kullandım ve 2013 mayıs ayındaki penguen güncellemesinde bunun yüzünden sitelerimin çoğu sıralamadan silindi gitti. Otomatik olarak eklediği için google spam olarak görüyor malesef. Manuel devam edin derim.
  • 18-01-2014, 00:22:09
    #12
    güzel bir uygulamaymış
  • 18-01-2014, 01:21:33
    #13
    hımm
  • 18-01-2014, 02:48:05
    #14
    Bunu da temanızda functions.php içerisine uygun bir yere ekleyin ve manuel imleyin

    49$ vermekten kurtulun ( pinterest ve google oturum açmış olmalısınız )

    <?php  
    add_action( 'add_meta_boxes', 'sis_add' );
    add_action( 'publish_post', 'sis_save' );  
    function sis_add()  
    {  
    add_meta_box( '1', 'Social', 'sis_and', 'post', 'normal', 'high' );  
    }  
    ?> 
    <?php  
    function sis_and()  
    {
    global $wpdb; 
    global $post;
    $id = $post->ID; 
    
    $the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = '$id'");
    $pattern = '!<img.*?src="(.*?)"!';
    preg_match_all($pattern, $the_content, $matches);
    $image_src = $matches['1'][0];
    ?> 
    <a href="//www.pinterest.com/pin/create/button/?url=<?php echo get_permalink(); ?>&description=<?php echo get_the_title(); ?>&media=<?php echo $image_src; ?>" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="https://gstatic.com/images?q=tbn:ANd9GcTOesAa9P6mgTmIdabnAOz7xk0aKvOujLugJOEyaQHV54P0pjukAQ" alt="Pin"/></a>
    <a href="https://plus.google.com/share?url=<?php echo get_permalink(); ?>" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="http://www.gstatic.com/images/icons/gplus-32.png" alt="Share on Google+"/></a>
    <?php
    }  
    ?>
    • aksakal
    • senturksun
    • oHo
    aksakal, senturksun, oHo ve 2 kişi bunu beğendi.
    5 kişi bunu beğendi.
  • 18-01-2014, 10:09:07
    #15
    Misafir adlı üyeden alıntı: mesajı görüntüle
    Bunu da temanızda functions.php içerisine uygun bir yere ekleyin ve manuel imleyin

    49$ vermekten kurtulun ( pinterest ve google oturum açmış olmalısınız )

    <?php  
    add_action( 'add_meta_boxes', 'sis_add' );
    add_action( 'publish_post', 'sis_save' );  
    function sis_add()  
    {  
    add_meta_box( '1', 'Social', 'sis_and', 'post', 'normal', 'high' );  
    }  
    ?> 
    <?php  
    function sis_and()  
    {
    global $wpdb; 
    global $post;
    $id = $post->ID; 
    
    $the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = '$id'");
    $pattern = '!<img.*?src="(.*?)"!';
    preg_match_all($pattern, $the_content, $matches);
    $image_src = $matches['1'][0];
    ?> 
    <a href="//www.pinterest.com/pin/create/button/?url=<?php echo get_permalink(); ?>&description=<?php echo get_the_title(); ?>&media=<?php echo $image_src; ?>" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="https://gstatic.com/images?q=tbn:ANd9GcTOesAa9P6mgTmIdabnAOz7xk0aKvOujLugJOEyaQHV54P0pjukAQ" alt="Pin"/></a>
    <a href="https://plus.google.com/share?url=<?php echo get_permalink(); ?>" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="http://www.gstatic.com/images/icons/gplus-32.png" alt="Share on Google+"/></a>
    <?php
    }  
    ?>
    Emeğine sağlık.
    Ama Daha fazla sosyal ağ gerekiyor hocam, herkes pin ve g+ kullanmayabilir, Twitter, tumblr, blogger, WP gibi bir kaç ağ daha olsa iyi olur kanımca.

    Mobil cihazından Tapatalk aracılığı ile gönderilmiştir. Yazım hataları olabilir.
  • 18-01-2014, 10:39:25
    #16
    Tesekkurler
  • 18-01-2014, 11:44:27
    #17
    Misafir adlı üyeden alıntı: mesajı görüntüle
    Bunu da temanızda functions.php içerisine uygun bir yere ekleyin ve manuel imleyin

    49$ vermekten kurtulun ( pinterest ve google oturum açmış olmalısınız )

    <?php  
    add_action( 'add_meta_boxes', 'sis_add' );
    add_action( 'publish_post', 'sis_save' );  
    function sis_add()  
    {  
    add_meta_box( '1', 'Social', 'sis_and', 'post', 'normal', 'high' );  
    }  
    ?> 
    <?php  
    function sis_and()  
    {
    global $wpdb; 
    global $post;
    $id = $post->ID; 
    
    $the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = '$id'");
    $pattern = '!<img.*?src="(.*?)"!';
    preg_match_all($pattern, $the_content, $matches);
    $image_src = $matches['1'][0];
    ?> 
    <a href="//www.pinterest.com/pin/create/button/?url=<?php echo get_permalink(); ?>&description=<?php echo get_the_title(); ?>&media=<?php echo $image_src; ?>" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="https://gstatic.com/images?q=tbn:ANd9GcTOesAa9P6mgTmIdabnAOz7xk0aKvOujLugJOEyaQHV54P0pjukAQ" alt="Pin"/></a>
    <a href="https://plus.google.com/share?url=<?php echo get_permalink(); ?>" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="http://www.gstatic.com/images/icons/gplus-32.png" alt="Share on Google+"/></a>
    <?php
    }  
    ?>
    admin panelde en alta geliyor değilmi otomatik başka birşey yaptığı yok?
  • 18-01-2014, 14:23:13
    #18
    senturksun adlı üyeden alıntı: mesajı görüntüle
    Emeğine sağlık.
    Ama Daha fazla sosyal ağ gerekiyor hocam, herkes pin ve g+ kullanmayabilir, Twitter, tumblr, blogger, WP gibi bir kaç ağ daha olsa iyi olur kanımca.

    Mobil cihazından Tapatalk aracılığı ile gönderilmiştir. Yazım hataları olabilir.
    diğer sosyal ağların bir çoğuna zaten otomatik gönderi yapıyor
    eğer resim içerikli bir siteyse pinterest çok ciddi bir ağ plus ise indexlenmede oldukça yardımcı aslında kendi panelimde çok daha kapsamlı bu olay sizde genişletebilirsiniz parametreler belli title url ve resim.

    SacmaSapan adlı üyeden alıntı: mesajı görüntüle
    admin panelde en alta geliyor değilmi otomatik başka birşey yaptığı yok?
    evet panele geliyor sizde konu açtıktan sonra manuel olarak imleme yapabiliyorsunuz.
    • senturksun
    senturksun bunu beğendi.
    1 kişi bunu beğendi.