我成功通过此函数获取 Facebook 评论编号:
<?php
function fb_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;
if ($count == 0 || !isset($count)) {
$count = 0;
}
echo $count;
}
;?>
我称之为:
<?php fb_comment_count();?>
现在如何将其添加到此代码中:
<?php comments_number(__('No Comments'), __('1 Comment'), __('% Comments'), '', __('Comments Closed') ); ?>
以便 WordPress 在一个数字中同时显示 WP 和 FB 评论的数量。
非常感谢大家!