Facebook beğeni sayınızı wordpress içinde gösteriniz.

Tarih : 14 / Kasım / 2014   -   Kategori :    -   Yorum Yok   Paylaş

Olcay_facebookWordPress sitenizde bulunan her hangi bir yazınızda facebook like sayfanızın beğeni sayısını yazdırmak istermiydiniz, aşağıdaki kod anlık veriyi çekmek için kullanışlı bir function’dur.

function.php dosyasına yapıştıracağınız kod

function fbCount($url) {
 $content = file_get_contents("http://api.ak.facebook.com/restserver.php?v=1.0&method=fql.query&query=select%20url,%20total_count%20from%20link_stat%20where%20url%20in%20('".$url."')&format=xml");
 $fbCount = simplexml_load_string($content);
 echo $fbCount->link_stat->total_count;

 if(is_bool($fbCount)){
 print '0';
 }else{
 echo $fbCount;
 }
}

Bu koduda wordpress temanızın neresinde gösterilmesini arzu ederseniz oraya yapıştırmanız yeterlidir.

<?php 
 fbCount(get_permalink($post->post_id)); 
?>