hexo下yilia主题添加字数统计和阅读时长功能

1.安装 hexo-wordcount

在博客目录下打开Git Bash Here 输入命令

npm i --save hexo-wordcount

2.文件配置

theme\yilia\layout\_partial\post下创建word.ejs文件:

  |  

然后在 themes/yilia/layout/_partial/article.ejs中添加

<% if (post.link || post.title){ %>
<%- partial('post/title', {class_name: 'article-title'}) %> <% if (!post.noDate){ %> <%- partial('post/date', {class_name: 'archive-article-date', date_format: null}) %> <% if(theme.word_count && !post.no_word_count){%> <%- partial('post/word') %> <% } %> <% } %>

3. 开启功能

在站点的_config.yml中添加下面代码

# 是否开启字数统计
#不需要使用,直接设置值为false,或注释掉
word_count: True

你可能感兴趣的:(hexo下yilia主题添加字数统计和阅读时长功能)