1

我的第一个问题在这里!我想将主题左侧的disqus“1 Comentario y 0 Reacciones”覆盖为评论计数。它应该看起来像所附的图像

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

如果您想签出,这是我在测试服务器中的博客。

我试图将此代码放在我的主题的functions.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 选项,但没有运气。希望有人帮助我(我欠你一杯啤酒!)

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

4

1 回答 1

0

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

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

于 2012-05-22T23:15:01.660 回答