Wordpress的Facebook评论

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress的Facebook评论相关的知识,希望对你有一定的参考价值。

This is the code to add facebook comments to your wordpress site.
  1. <div id="fb-root"></div>
  2. <script>(function(d, s, id) {
  3. var js, fjs = d.getElementsByTagName(s)[0];
  4. if (d.getElementById(id)) return;
  5. js = d.createElement(s); js.id = id;
  6. js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=Your App ID Here";
  7. fjs.parentNode.insertBefore(js, fjs);
  8. }(document, 'script', 'facebook-jssdk'));</script>
  9.  
  10. <meta property="fb:app_id" content="Your App ID Here"/>
  11.  
  12. <div class="fb-comments" data-href="<?php the_permalink() ?>" data-num-posts="2" data-width="470" data-colorscheme="light" data-mobile="false"></div>
  13.  
  14.  
  15. // Get combined FB and WordPress comment count
  16. function get_full_comment_count() {
  17. global $post;
  18. $url = get_permalink($post->ID);
  19.  
  20. $filecontent = file_get_contents('https://graph.facebook.com/?ids=' . $url);
  21. $json = json_decode($filecontent);
  22. $count = $json->$url->comments;
  23. $wpCount = get_comments_number();
  24. $realCount = $count + $wpCount;
  25. if ($realCount == 0 || !isset($realCount)) {
  26. $realCount = 0;
  27. }
  28. return $realCount;
  29. }
  30. function the_full_comment_count() {
  31. $realCount = get_full_comment_count();
  32. echo $realCount;
  33. }

以上是关于Wordpress的Facebook评论的主要内容,如果未能解决你的问题,请参考以下文章

Facebook 评论插件计数 - 统计评论计数标题未显示

WordPress - 代码片段插件

wordpress插件的常用插件

Facebook 喜欢和评论代码脚本

Wordpress - 将代码片段包含到布局的选定部分的插件

markdown 在WordPress中使用jQuery代码片段