我无法将 Facebook 评论集成到我的 PHP 博客中?

发布于 2024-12-13 13:45:59 字数 327 浏览 0 评论 0 原文

我正在尝试将 FB 评论集成到我的 PHP 博客文章下,但我不知道该怎么做? FB 评论可以在这里找到 h**p://developers.facebook.com/docs/reference/plugins/comments/

我的博客位于这里 h**p://www.blog.aiwwan.com

这是 获得的 HTML5 代码

我从 FB第 1 步 在您的页面上包含一次 JavaScript SDK,最好是在开始标记之后。 他们的代码在这里

第 2 步 将插件的代码放置在您希望插件出现在页面上的任何位置。

有人可以帮忙吗?

I'm trying to integrate FB comments under the articles on my PHP blog but I couldn't figure out how to do this?
FB comments is found here h**p://developers.facebook.com/docs/reference/plugins/comments/

My blog is located here h**p://www.blog.aiwwan.com

This is the HTML5 code I got from FB

STEP 1
Include the JavaScript SDK on your page once, ideally right after the opening tag.
Their code here

STEP 2 Place the code for your plugin wherever you want the plugin to appear on your page.

any one can help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2024-12-20 13:46:00

您可以将以下代码添加到您的页面,将 appIddata-href 替换为 https://developers.facebook.com/apps 以及您希望与评论关联的网站页面的 URL。

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) {
    return;
  }
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=105147492926472";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-comments" data-href="http://borigami.com/content.php?article=291" data-num-posts="20" data-width="500">

You can add following code to your page, replace appId and data-href with your application ID from https://developers.facebook.com/apps and the URL of the page on your website that you want the comments to be associated with.

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) {
    return;
  }
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=105147492926472";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-comments" data-href="http://borigami.com/content.php?article=291" data-num-posts="20" data-width="500">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文