0

我正在为我的 Wordpress 设置主题,并希望在粉丝页面中只显示喜欢的数量。我怎样才能显示这个

https://api.facebook.com/method/fql.query?format=json&query=select+fan_count+from+page+where+page_id=160397290640478

在我的主题中?我不能使用 fopen() 函数。也许是JavaScript?如何?

对不起这个问题,但我不是程序员。


对不起,但毕竟,我得到了自己的答案:

http://pastebin.com/desK1b6D

谢谢!

4

1 回答 1

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>
于 2013-03-21T20:45:35.913 回答