高级配置

随机文章跳转

方法取自 HCLonely

客根目录/scripts(没有请自行创建)下新建random.js文件,内容如下:

1
2
3
4
5
6
7
8
9
10
11
hexo.extend.generator.register('random', function (locals) {
const config = hexo.config.random || {}
const posts = []
for (const post of locals.posts.data) {
if (post.random !== false) posts.push(post.path)
}
return {
path: config.path || 'random/index.html',
data: `<html><head><script>var posts=${JSON.stringify(posts)};window.open('/'+posts[Math.floor(Math.random() * posts.length)],"_self")</script></head></html>`
}
})

在 主题配置文件中的menu下添加 随机文章: /random/ || fas fa-random

如果不想随机跳转到某篇文章,只需在这篇文章Front-matter添加random: false