Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've successfully integrated Facebook Like button to Wordpres based website. Facebook Like button is shown only on single posts. However, I would like to output how many time a post is being liked on the front page of my site without showing the actually like button. A simple number output is what I'm after.

I've been reading Facebook documentation as well some tutorials that partly deal with this issue, but haven't got anywhere so far.

So, I need some help from someone who has some knowledge about this matter.

Anyone?

Thanks.

share|improve this question

4 Answers

I found here a simple and great solution: link

share|improve this answer
thanks, just what I was looking for :) – fjckls Nov 18 '12 at 16:59

Paste this function in your theme functions.php file and save the file.

function bfan() {
$pageID = 'Page ID/Page Vanity URL';
$info = json_decode(file_get_contents('http://graph.facebook.com/' . $pageID));
echo $info->likes;
}

Then you can call the function.

You will need to know the your facebook page ID or facebook page name,then just substitute it in the code above.

Hope this helps you out.

share|improve this answer

Facebook has an API for finding out how many Facebook shares (likes etc.) a page has:

http://graph.facebook.com/?ids=http://stackoverflow.com/

share|improve this answer
Hey @ceejayoz, thanks for the response but I need to have some code hints and/or samples in order to figure out the piece of code required for printing the number of likes in wordpress. Facebook API lacks examples for beginners such as myself, I think. Any code hint or sample you can share? – Metin Jun 7 '11 at 22:50

Use an iframe, and for layout specify box_count:

layout=box_count

not

layout=button_count

and for href specify the url for the post you want to display the counts for

Check out http://developers.facebook.com/docs/reference/plugins/like/

share|improve this answer
You missed the "without showing the actually like button" bit. – ceejayoz Jun 7 '11 at 15:27
Hey @Llewellyn1411, thanks for the response but that's not what I'm after. I've integrated Facebook open graph protocol with my wordpress site and therefore not using iframe version. Anyway, that's not point. The point is how to print out the number of likes a post has in plain text format. Let's say a post has 5 likes, then I'd like to print out just the number "5" without any other visual from Facebook. Any idea? – Metin Jun 7 '11 at 22:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.