1

我以为我在我的网站上使用我的打开图形/facebook 应用程序设置正确设置了所有内容,但看起来仍然存在问题。我刚刚通过调试器运行了我的网站,这就是我得到的。我无法弄清楚是什么导致了这些错误。

/* ------------------------- 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 
            }
4

1 回答 1

1

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

于 2012-05-19T21:20:47.257 回答