1

我需要隐藏 Disqus 对受密码保护的帖子的评论,直到用户输入正确的密码。我已经就这个问题联系了 Disqus……首先他们告诉我启用 disqus_developer 变量。所以我在 Wordpress 的 header.php 中添加了这个:

<script type="text/javascript">
var disqus_developer = 1; // developer mode is on
</script>

但这并没有做任何事情。然后 Disqus 支持告诉我:

您必须在代码中添加一些逻辑,除非输入密码,否则不会加载 Disqus。这是您需要在主题/模板中自定义的内容。

他们没有给出如何实现这一目标的方向。我需要做什么?

4

1 回答 1

1

只需编辑 plugins/disqus-comment-system/comments.php 并在该文件开头的某处添加以下代码:

<?php if ( post_password_required() ) { ?>
<p class="nocomments">Whatever text you want.</p>
        <?php
                return;
         } ?>
于 2012-09-02T12:43:42.787 回答