hexo侧边栏安装最近评论小物件

发布 : 2016-07-06 分类 : Blog 浏览 :

前提:你的hexo已经配置了多说

多说已经倒闭很多年了


themes/landscape-plus/layout/_widget目录下新建小物件duoshuo_recent_comments.ejs,编辑如下:

1
2
3
4
5
6
7
8
<% if (theme.duoshuo_shortname){ %>
<div class="widget-wrap">
<h3 class="widget-title">最近评论</h3>
<div class="widget">
<ul class="ds-recent-comments" data-num-items="5" data-show-avatars="1" data-show-time="1" data-show-title="1" data-show-admin="1" data-excerpt-length="70"></ul>
</div>
</div>
<% } %>

再修改主题的配置themes/landscape-plus/_config.yml

1
2
3
4
5
6
7
8
9
10
# Sidebar
sidebar: right
widgets:
- recent_posts
- category
- tag
- tagcloud
- archive
- links
- duoshuo_recent_comments //与小物件的名称保持一致
本文作者 : 小凡
原文链接 : https://16bh.github.io/2016/07/06/hexo-landscape-pluas-add-recent-comment/
版权声明 : 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!
留下足迹