<fb:comments-count> not working on my WordPress powered blog

可紊 提交于 2020-01-23 03:40:06

问题


I am using the Facebook comments plugin on WordPress and the comments box is working fine but I want to access the number of counts on the index page and on single pages. On the pages, the Facebook Javascript is loaded on the pages.

Here's the code I used: <fb:comments-count href=<?php echo get_permalink() ?>/></fb:comments-count> comments

But it doesn't count the FB comments.

Is there a simple code that let me retrieve the number of comment counts?

Thanks,


回答1:


Include this function somewhere in your template file :

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;
}

use it like this in your homepage or wherever

<a href="<?php the_permalink() ?>"><?php fb_comment_count() ?></a>

Had the same problem, that function worked for me... if you get an error... try reading this.




回答2:


The comments often don't appear here :

graph.facebook.com/?ids = [your url]

Instead they appear well in

graph.facebook.com/comments/?ids = [your url]

Hence the value of the final solution.




回答3:


Answer by ifennec seems fine, but actually is not working (facebook maybe changed something and now is only returning the number of shares).

You could try to get all the comments:

    $filecontent = file_get_contents(
        'https://graph.facebook.com/comments/?ids=' . $url);

And count all:

    $json = json_decode($filecontent);
    $content = $json->$url;
    $count = count($content->data);

    if (!isset($count) || $count == 0) {
       $count = 0;
    }
    echo $count;

This is just a fix until facebook decides to read the FAQ about fb:comments-count, and discovers it's not working :) (http://developers.facebook.com/docs/reference/plugins/comments/ yeah, awesome comments).

By the way, I applied the function in Drupal 7 :) Thank you very much ifennec, you showed me the way.




回答4:


This works for me :

function fb_comment_count() {
  global $post;
  $url = get_permalink($post->ID);
  $filecontent = file_get_contents('https://graph.facebook.com/comments/?ids=' . $url);
  $json = json_decode($filecontent);
  echo(count($json->$url->comments->data));
}



回答5:


This is resolved.

<p><span class="cmt"><fb:comments-count href=<?php the_permalink(); ?>></fb:comments-count></span> Comments</p>

The problem was that I was using 'url' than a 'href' attribute in my case.




回答6:


Just put this function in functions.php and pass the post url to function fb_comment_count wherever you call it on your theme files

function fb_comment_count($url) {
$filecontent    = file_get_contents('https://graph.facebook.com/comments/?ids=' . $url);
$json           = json_decode($filecontent);
$content        = $json->$url;

echo count($content->comments->data);

}



来源:https://stackoverflow.com/questions/5956488/fbcomments-count-not-working-on-my-wordpress-powered-blog

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!