多说是一个很好的社会化评论系统,由于 Micolog 自身的评论功能实在太烂,所以一狠心直接换了多说。以前用多说都是在 Wordpress 平台中,直接装插件就可以,那如何在 Micolog 中使用多说呢?
首先你需要去多说申请一个新的站点 点这里申请
然后将获取到的代码放到主题的 comment.html 中,注意进行如下的修改:
在评论框的显示层中,添加 data-thread-key 等多项参数,可以让多说更好的整合进 Micolog,更智能的识别文章和分页。
<!– Duoshuo Comment BEGIN –>
<div class=”ds-thread” data-thread-key=”“ data-title=”“ data-author-key=”“ data-category=”“ data-url=”“></div>
<script type=”text/javascript”>
var duoshuoQuery = {short_name:”devppios”};
(function() {
var ds = document.createElement(‘script’);
ds.type = ‘text/javascript’;ds.async = true;
ds.src = ‘http://static.duoshuo.com/embed.js';
ds.charset = ‘UTF-8’;
(document.getElementsByTagName(‘head’)[0]
|| document.getElementsByTagName(‘body’)[0]).appendChild(ds);
})();
</script>
<!– Duoshuo Comment END –>
使用以上代码完全替换掉 comment.html 中原有的所有代码即可。