Hexo - Next开启相关阅读

一、安装

  1. Npm安装:npm install hexo-related-posts
  2. 重新部署Hexo:hexo clean && hexo g

二、配置

在Hexo主题的_config中增加:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 是否开启相关帖子功能 Related popular posts
# Dependencies: https://github.com/sergeyzwezdin/hexo-related-posts
related_posts:
enable: true
title: # custom header, leave empty to use the default one(默认使用推荐的文章标题)
#是否在主页显示相关阅读
display_in_home: false
# 权重设置
weight:
title: 0.5
description: 0.1
keywords: 0.001
tags: 0.5
categories: 0.5
text: 0.0001

三、效果