如何让Facebook像按钮链接各种新闻帖?

时间:2013-03-18 22:50:27

标签: facebook button facebook-like permalinks

任何人都可以帮我解决我所拥有的Facebook“Like Button”问题吗?

我已在我的网站上安装了此插件,并希望该按钮与我的每个不同的新闻帖子分别对应。目前它只链接到我的网站主页。每个帖子底部的页脚已设置为PERMALINK。

网站链接 - 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>

我的PERMALINK:

<div class="fb-like" data-href="%PERMALINK%" data-send="true" data-width="450" data-show-faces="false"></div>

0 个答案:

没有答案