谁能帮我解决我遇到的 Facebook“点赞按钮”问题?
我已经在我的网站上安装了这个插件,并希望该按钮分别与我的每个不同的新闻帖子相对应。目前它只链接到我的网站主页。每个帖子底部的页脚已设置为永久链接。
网站链接 - http://www.estrellarocks.com/news
下面是我正在使用的代码:
<head>
<title>Estrella</title>
<meta property="fb:admins" content="......"/>
<meta property="fb:app_id" content="......"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://estrellarocks.com"/>
<meta property="og:site_name" content="Estrella Official"/>
<meta property="og:description" content="Official Website for Scottish rock band Estrella!"/>
<meta property="og:image" content="http://estrellarocks.squarespace.com/storage/FB%20Plugin%20image.jpg"/>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : '.......',
channelUrl : '//www.estrellarocks.com/channel.html',
status : true,
cookie : true,
xfbml : true
});
};
(function(d, debug){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
</script>
</body>
</head>
我的永久链接:
<div class="fb-like" data-href="%PERMALINK%" data-send="true" data-width="450" data-show-faces="false"></div>