wordpress - I want to customize the facebook buttons like "2201 Fans" into my website -


i want cutomize facebook buttons "2201 fans" website .. in facebook developer site auto generated button .... i'm working on wordpress site .... plugin more helpful

display no of fans on site using facebook page id.

<?php     $page_id = 'yourfbpageid';  // facebook page id     $xml = @simplexml_load_file("http://api.facebook.com/restserver.php?method=facebook.fql.query&query=select%20fan_count%20from%20page%20where%20page_id=".$page_id."") or die ("a lot");     $fans = $xml->page->fan_count; ?> <li class="text white"><span></span><?php echo $fans.' fans'; ?></li> 

Comments