开发者

Is it possible to show the actual exact count of likes in the layout style "box count" and not have the numbers rounded?

开发者 https://www.devze.com 2023-03-27 20:55 出处:网络
Is it possible to show the actual exact count of likes in the layout style \"box count\" for example 开发者_高级运维1019 not the rounded 1K in the like button on my homepage?

Is it possible to show the actual exact count of likes in the layout style "box count" for example 开发者_高级运维1019 not the rounded 1K in the like button on my homepage?

I do not want to use the standard layout style. I want to use the box count.

Is there a way to do this??


http://graph.facebook.com/?id=http://url.to/get/likes

you can get it with PHP & put it to page

so for example

<?php
$data = file_get_contents("http://graph.facebook.com/?id=http://www.stackoverflow.com");
$id_likes = json_decode($data);
$likes = $id_likes->shares;
echo $likes;
?>

working demo

0

精彩评论

暂无评论...
验证码 换一张
取 消