在博客中创建分类

  1. 1. 一、创建分类页添加type属性
  2. 2. 二、为你的文章添加分类

一、创建分类页添加type属性

打开命令行(推荐git bash),进入博客文件夹。执行命令

1
hexo new page categories

若出现

1
2
INFO  Validating config
INFO Created: ~\Desktop\blog\myblog\source\categories\index.md

则成功创建。

在你的博客文件夹source中会有一个叫categories的文件夹,其中有一个index.md文件,打开文件,添加属性type: “categories”。

添加后为:

1
2
3
4
5
6
---
title: categories
date: 2022-12-09 12:04:45
type: "categories"
---

记得 ctrl + S 保存。

二、为你的文章添加分类

这里以我的另一篇文章为例:

原来是

1
2
3
---
title: Hexo 框架下利用 github 搭建博客 (win 11)
---

在原来的title下添加一行categories,想一个分类类别的名字填入,例如一个叫blog的分类。

1
2
3
4
5
---
title: Hexo 框架下利用 github 搭建博客 (win 11)
categories:
- blog
---

再用

1
2
3
hexo clean
hexo g
hexo d

进行部署

接着就能看到你的分类啦!

注意:1.只有添加了categories: xxx的文章才会被收录到分类中。
2.一篇文章只能属于一个分类,如果在“- blog”下方再添加一个“-build_blog”,会在blog下方在创建一个小类,文章会被归属到 “- blog”下的“-build_blog”分类,类比文件夹里的一个文件夹。