我正在运行 WordPress 3.4 和 Disqus 2.72。
我有一个问题 - 每次我写评论时,我发现 Disqus 并没有计算在内。
例如:
在博客条目列表中显示 0 条评论
当您打开博客条目时,它会显示 3 条评论
你可以在我的网站上找到这个:http: //www.mac-nutrition.com/category/blogs/
到目前为止,我已将以下代码添加到主题的functions.php文件中,但它并没有真正帮助(最后):
// Disqus: Prevent from replacing comment count
remove_filter('comments_number', 'dsq_comments_text');
remove_filter('get_comments_number', 'dsq_comments_number');
remove_action('loop_end', 'dsq_loop_end');
我也尝试过使用 Web Ninja Comment Fixer ( http://wordpress.org/extend/plugins/web-ninja-comment-count-fixer/ ) 但没有成功。
这是我目前的 Disqus 设置:
提前谢谢了。