Jqk

在逐梦的路上,总会有人的梦想枯萎,只有提升自我才可以涅槃重生

0%

hexo next 为文章添加分类

hexo next 为文章添加分类

1.新建一个页面,命名为 categories 。命令如下:

1
hexo new page categories

2.编辑刚新建的页面,将页面的类型设置为categories,主题将自动为这个页面显示所有分类

1
2
3
4
5
---
title: "分类"
date: 2019-01-18 16:19:42
type: 'categories'
---

3.在菜单中添加链接。编辑主题的 _config.yml ,将 menu 中的 categories: /categories 注释去掉,如下:

1
2
3
4
5
6
menu:
home: / || home //主页
#about: /about/ || user //关于
#tags: /tags/ || tags //标签
categories: /categories/ || th //分类
archives: /archives/ || archive //归档

添加文章分类关联
1.hexo中有Front-matter这个概念,是文件最上方以 — 分隔的区域,用于指定个别文件的变量。举个栗子,在hexo new post article时会生成article.md文件,文件生成好的文章属性。
2.在其中添加categories属性,再部署之后就可以在分类页看到分类了

1
2
3
4
---
title: hexo next 为文章添加分类
categories: 前端
---
-------------本文结束感谢您的阅读-------------
坚持原创技术分享,您的支持将鼓励我继续创作!