给博客添加评论功能

建了一网站,你会希望有人评论。Octopress自带disqus的整合功能。下面说说怎么添加这个评论功能。

准备工作

  • 注册Disqus
    • 你也可以不注册,直接用google或者facebook账号登陆就行。
  • 然后选择 install disqus(或者去https://disqus.com/profile/signup/intent/),选择I want to install Disqus on my site
  • 然后一推配置,随便你选就行了。

安装Disqus

1
2
3
4
5
cd octopress
vim _config.yml

disqus_short_name: my_disqus_userid # replace it with the userid (not email address) you created in disqus
disqus_show_comment_count: true

也就是把_config.yml文件中的disqus_show_comment_count:改成true,在disqus_short_name:加上disqus名字就行了。

Comments