如何让类似Facebook的按钮链接到各种新闻帖子?

如何让类似Facebook的按钮链接到各种新闻帖子?,facebook,button,facebook-like,permalinks,Facebook,Button,Facebook Like,Permalinks,有谁能帮我解决一个类似Facebook的按钮问题吗 我已经在我的网站上安装了这个插件,希望这个按钮分别对应于我的每一篇不同的新闻文章。目前它只链接到我的网站主页。每篇文章底部的页脚被设置为永久链接 网站链接- 下面是我正在使用的代码: <head> <title>Estrella</title> <meta property="fb:admins" content="......"/> <meta property="fb:app_id"

有谁能帮我解决一个类似Facebook的按钮问题吗

我已经在我的网站上安装了这个插件,希望这个按钮分别对应于我的每一篇不同的新闻文章。目前它只链接到我的网站主页。每篇文章底部的页脚被设置为永久链接

网站链接-

下面是我正在使用的代码:

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