歸檔

2015-03-03 141 views
1

WordPress的Facebook的評論計數我想顯示在我的博客檔案Facebook的評論數。歸檔

我的WordPress網站在function.php

// Get combined FB and WordPress comment count 
    function 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; 
    } 

以下PHP函數這是我如何使用功能上的模板文件中的循環<?php echo full_comment_count(); ?>

大部分時間內最的文章顯示「0」評論。但有時候其中一個或兩個工作。我在做什麼錯

回答

0

試試這個

function 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; 
if ($count == 0 || !isset($count)) { 
    $count = 0; 
} 
echo $count; 
} 
+0

所有計數被設置爲0 ...我用它的網站是www.womenoffaith.com在博客歸檔......任何理論? – Omar 2015-03-04 04:24:41

+0

參考http://screencast.com/t/NEfpNJ06rl72。所有評論數顯示正常。分享您正在面對問題的網址。 – Karthikeyani 2015-03-05 04:48:24