我正在关注我的Wordpress,并希望在粉丝专页中展示喜欢的数量。我该如何显示
在我的主题中?我不能使用fopen()函数。也许是javascript?怎么样?
对不起这个问题,但我不是程序员。
抱歉,但毕竟我得到了自己的答案:
谢谢!
答案 0 :(得分:0)
作为参考,当pastebin不再起作用时,这是解决问题的方法:
<script>
function showCount(count){
if(count)
document.getElementById('fb_fan_count').innerHTML = count[0].fan_count;
}
</script>
<p id="fb_fan_count"></p>
<script type="text/javascript" src="https://api.facebook.com/method/fql.query?format=json&callback=showCount&query=select+fan_count+from+page+where+page_id%3D16039729064048"></script>