hexo添加相关文章功能

效果预览

##

教程

该功能由 hexo-related-popular-posts 插件提供,在站点根目录下Git中执行以下命令安装依赖:

1
npm install hexo-related-popular-posts --save

next主题配置文件里面已经有参数,直接搜索related_posts:

1
2
3
4
5
6
7
8
9
10
related_posts:
enable: true
title: 相关文章推荐 # 属性的命名
display_in_home: false # false代表首页不显示
params:
maxCount: 5 # 最多5条
#PPMixingRate: 0.0 # 相关度
#isDate: true # 是否显示日期
#isImage: false # 是否显示配图
#isExcerpt: false # 是否显示摘要

image-20200723193713168

修改完毕!