如何获得开放图表Facebook喜欢按钮显示?

时间:2011-02-19 19:49:15

标签: facebook facebook-like facebook-opengraph

我已经在Facebook开发者网站和http://www.websitedesign411.com/blog/facebook-open-graph-protocol-full-integration-walkthrough之后实施了Facebook Open Graph Protocol Full Integration。

我使用

在这里显示了Facebook Like Buttons http://giantmango.com/news
<fb:like href="<?php the_permalink() ?>" layout="button_count" show_faces="false" width="200" action="like" colorscheme="light"></fb:like>

在同一个域中,我使用的是确切的代码,但是在不同的主题上,Facebook Like Buttons没有显示在这里http://giantmango.com/testartwork-2237

关于如何解决这个问题的任何想法都会有所帮助。

1 个答案:

答案 0 :(得分:1)

看起来你错过了你的Facebook javascript初始化代码。

<div id="fb-root"></div>
<script>
    window.fbAsyncInit = function() {
    FB.init({appId: 'your app id', status: true, cookie: true,
        xfbml: true});
    };
    (function() {
        var e = document.createElement('script'); e.async = true;
        e.src = document.location.protocol +
           '//connect.facebook.net/en_US/all.js';
        document.getElementById('fb-root').appendChild(e);
    }());
</script>