PHP Facebook对Wordpress的评论
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Facebook对Wordpress的评论相关的知识,希望对你有一定的参考价值。
<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=Your App ID Here";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<meta property="fb:app_id" content="Your App ID Here"/>
<div class="fb-comments" data-href="<?php the_permalink() ?>" data-num-posts="2" data-width="470" data-colorscheme="light" data-mobile="false"></div>
// Get combined FB and WordPress comment count
function get_full_comment_count() {
global $post;
$url = get_permalink($post->ID);
$filecontent = file_get_contents('https://graph.facebook.com/?ids=' . $url);
$json = json_decode($filecontent);
$count = $json->$url->comments;
$wpCount = get_comments_number();
$realCount = $count + $wpCount;
if ($realCount == 0 || !isset($realCount)) {
$realCount = 0;
}
return $realCount;
}
function the_full_comment_count() {
$realCount = get_full_comment_count();
echo $realCount;
}
以上是关于PHP Facebook对Wordpress的评论的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress - 列出作者对作者页面的评论
Wordpress的Facebook评论
Facebook 评论插件计数 - 统计评论计数标题未显示
php [Wordpress]禁用wordpress评论
将事件发布到 Facebook(来自 Wordpress / PHP)[关闭]
php Facebook Pixel通过WordPress功能