配置
NexT 主题默认已经集成了文章【字数统计】、【阅读时长】统计功能,如果我们需要使用,只需要在主题配置文件 _config.yml
中打开 wordcount 统计功能即可。如下所示:
1 | # Post wordcount display settings |
安装插件
1 | npm i --save hexo-wordcount |
post 添加
如果还是不行,建议简单强暴添加,方法如下
打开hexo\themes\hexo-theme-next\layout\_macro\post.swig
文件,在文件类搜索关键词busuanzi,找到这段代码后
1 | {% if not is_index and theme.busuanzi_count.enable and theme.busuanzi_count.post_views %} |
在endif上面,即本文代码块那个空行处添加以下代码
1 | <span class="post-meta-divider">|</span> |
全站添加
打开hexo\themes\hexo-theme-next\layout\_partials\footer.swig
文件,新增如下代码
1 | <div class="theme-info"> |
到这里就可以啦,快去试试吧。