如何使用我的 Wordpress 主题中的评论计数覆盖 disqus 评论计数


How to override a disqus comment count with the comment count from my Wordpress theme

我的第一个问题在这里!我想将主题左侧的话语"1 Comentario y 0 Reacciones"覆盖到仅评论计数。它看起来像所附的图像。

我已经在数据库中搜索了类似的问题,但没有运气。

如果您想

查看,这是我在测试服务器中的博客。

试图将此代码放在我主题的函数.php中,以便 Disqus 不会覆盖主题中的注释。

// 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');

还有Disqus插件的高级选项中的输出Javascript选项,但是没有运气。希望有人帮助我(我欠你一杯啤酒!

更新:显然问题发生在主页,类别,搜索页面中,但不发生在单个帖子中。

好的@dInGd0nG查看帖子链接后,我找到了解决此问题的简单方法。只需转到 wordpress 主题的函数.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');

就这样。这比从Disqus插件转到"高级"选项卡并在页脚中输出Javascript要好,因为这会使它变慢。