在WP主题中显示类似计数的麻烦

时间:2013-03-21 16:59:20

标签: facebook-graph-api wordpress-theming facebook-page

我正在关注我的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

谢谢!

1 个答案:

答案 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>