如何让Facebook打开图形/社交(如框)在我的网站上正常工作?

时间:2012-05-19 21:11:11

标签: facebook facebook-graph-api facebook-like

我以为我已经使用我site上的开放图形/脸谱图应用设置正确设置了所有内容,但看起来仍然存在问题。我刚刚通过debugger运行了我的网站,这就是我所得到的。我无法弄清楚导致这些错误的原因。

/* ------------------------- Actions --------------------------- */

add_action('wp_head', 'wpse_43672_wp_head', 0);
/**
 * Hooks into the `wp_head` action.
 * @link http://codex.wordpress.org/Plugin_API/Action_Reference/wp_head
*/
function wpse_43672_wp_head(){ 
?> 

<script type='text/javascript'> 
(function(){ 
var bsa = document.createElement('script'); 
bsa.type = 'text/javascript'; 
bsa.async = true; 
bsa.src = '//cdn.beaconads.com/ac/beaconads.js'; 
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa); 
})(); 

</script> 

<div id="fb-root"></div>

<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'Y 11111111', // App ID
      channelUrl : '//WWW.url.com/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional initialization code here
  };

  // Load the SDK Asynchronously
  (function(d){
     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.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>

<?php 
            }

1 个答案:

答案 0 :(得分:1)

HTML中有两个</head>标记。