我在wordpress博客上有“简单的facebook连接”插件,并在一个月前将评论和按钮集成到我的网站上。我今天注意到,没有相似的按钮和评论都不再加载,我最后一次确认我看到它们是3天前。
我没有改变任何东西,它似乎不被禁止的网站(没有理由,它出现在我在Facebook的开发者页面,并没有说这个网站被阻止)。
以下是类似按钮的代码:
<fb:like href="http://extremesnowboardingvideos.com/2011/11/24/video-compilation-of-extreme-snowboarding/" send="false" layout="standard" show_faces="true" width="450" height="65" action="like" colorscheme="light" font="lucida+grande"></fb:like>
答案 0 :(得分:0)
您需要将Facebook Javascript库添加到您的网页并致电FB.init
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
if ( FB && FB.init ){
FB.init( {
appId: '<your-app-id>',
status: true,
cookie: true,
xfbml: true
});
}
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = "http://connect.facebook.net/en_US/all.js";
document.getElementById('fb-root').appendChild(e);
}());
</script>
或使用WordPress Connect等插件 - http://wordpress.org/extend/plugins/wordpress-connect/