この関数を使用して、Facebok のコメント番号を取得することに成功しました。
<?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 のコメントの数を 1 つの数字にまとめて表示するようにします。
皆様、本当にありがとうございました!