/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function tweetCount($url) { $content = file_get_contents("http://api.tweetmeme.com/url_info?url=".$url); $element = new SimpleXmlElement($content); $tweets = $element->story->url_count; echo $tweets." tweets!"; } // template tag <?php tweetCount($post->permalink); ?>