使用Disqus,如何停止在wp数据库中存储评论?

时间:2012-07-13 作者:jay

我使用的是Disqs评论系统,但它也会将评论保存在wordpress数据库中。有没有办法禁用在wordpress数据库中存储评论的选项,因为我看不到它的任何用途。

2 个回复
SO网友:Taylor Dewey

Discus插件将您的WordPress评论与Discus系统同步——这是它的主要用途(拥有您自己的评论等)。您可以完全抛弃内置的WordPress评论系统,修改主题模板(可能只是comments.php)以使用独立的Discus javascript来解决这个问题。

<script type="text/javascript">
        var disqus_shortname = \'\'; // required: replace example with your forum shortname
        var disqus_identifier = \'<?php the_guid() ?>\'; // globally unique identifier. *should* never change.
        var disqus_url = \'<?php echo get_permalink(); ?>\'; //link-back to this page
        /* * * DON\'T EDIT BELOW THIS LINE * * */
        (function () {
            var dsq = document.createElement(\'script\');
            dsq.type = \'text/javascript\';
            dsq.async = true;
            dsq.src = \'http://\' + disqus_shortname + \'.disqus.com/embed.js\';
            (document.getElementsByTagName(\'head\')[0] || document.getElementsByTagName(\'body\')[0]).appendChild(dsq);
        })();
    </script>

SO网友:jlengstorf

您是否已尝试禁用从Discus到WordPress的同步?

enter image description here(这位于Discus仪表板视图中的插件设置下。)

仅供参考:存储评论是为了防止数据丢失,如果Disqs失败,或者如果你想在将来迁移到一个新的插件。

当然,您也可以手动与设置同步,因此,除非出现灾难性的discus故障/关闭,否则您可能可以不将注释存储在数据库中。

结束