Hexo新增文章放入分类

一、创建“分类”选项

在项目目录下执行:

1
hexo new page categories

source目录下会生成categories文件夹,文件夹下有index.md文件,打开index.md文件,添加type: categories到内容中,添加后是这样的:

1
2
3
4
5
---
title: categories
date: 2024-10-25 13:55:47
type: categories
---

保存文件并关闭。

二、新增文章加入分类

_posts目录下新增md文件,文件开头添加如下内容:

1
2
3
4
5
---
title: Hexo新增文章放入分类
date: 2024-10-25 14:03:51
categories: Hexo
---

如果使用:

1
categories: [Hexo,fluid]

这样的格式,那么分类Hexo下面会多出一个子分类fluid


Hexo新增文章放入分类
http://bright-mph.github.io/2024/10/25/hexo使用/文章加入分类/
作者
bright
发布于
2024年10月25日
许可协议