Share
ShareSidebar
2011-10-14 13:46:47 +0

How to show a facebook fans in wordpress ?

How to show a facebook fans in wordpress ?

Rate this post

You must be registered to vote first

Comments

fritz08
fritz08 2011-10-14 14:08:08

functions.php

function fb_fans() {
   $content
= file_get_contents("http://graph.facebook.com/ShareMyCode/");
   $fb_likes_count
= json_decode($content);
   echo $fb_likes_count
->{'likes'};
}

Use

<p><?php echo fb_fans(); ?> Facebook Fans</p>
+0

Comment