Hôm nay mình chia sẻ với các bạn đoạn code giúp bạn hiển thị số người follow trên tài khoản twitter của bạn.
Bước 1 : mở file functions.php trong folder giao diện của bạn, sau đó past đoạn code sau:
function twitter_count($username) {
$url = "http://api.twitter.com/1/users/show.xml?screen_name=".$username;
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($data);
$count = $xml->followers_count;
return $count;
}
Bước 2 : Bây giờ các bạn muốn hiển thị ở đâu chỉ cần past đoạn code sau vào chỗ đó là được
<?php echo twitter_count(sharecode); //thay đổi sharecode thành user của bạn ?>