设置disqus评论

注册Disqus

http://disqus.com/ 注册 disqus 帐号。

注册 Disqus 帐号,用邮箱注册下就可以了,注册需要填写:Site URL,Site Name,Site Shortname。

提示:一个 disqus 帐号可以申请多个 Site Shortname。不同空间的文章 ID 有可能重合,所以请为不同的空间配置不同 Site Shortname。

设置Disqus

接下来会有一些简单的设置,比如语言;如果你有一些社交化工具,例如 twitter,也可以填上;还有一些评论的选项,例如过滤垃圾评论,回调评论等。

安装Disqus

安装,因为没有用到插件安装,所以选择的 Universal Code。所谓安装,其实就是将一段 js 代码嵌入到你的博客源代码里面。

在开始之前,你需要确认:

  1. 已经注册了 Disqus
  2. 有权限编辑网站上的代码
  3. 获取你的短域名,就是上面说的那个 Shortname

获取 js 代码。DisQus 已经为我们生成了这样的一段代码:

<div id="disqus_thread"></div>
<script type="text/javascript">
    /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
    var disqus_shortname = 'longber'; // required: replace example with your forum shortname

    /* * * DON'T EDIT BELOW THIS LINE * * */
    (function() {
        var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
        dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
    })();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>

只需按照代码中的提示将 ‘example’ 替换为你的 Shortname ,然后将它嵌入到所需页面中,自此成功..

Vimwiki中设置

vimwiki.js中用"#no-comment"检查页面是否不允许评论,在不允许评论的wiki页中添加如下内容即可:

<pre id="no-comment">本页不允许评论</pre>