先前我們學到如何新增一篇文章,這篇會說明如何將文章上標籤與分類管理。
建立分類
- 輸入
hexo new page 'categories'
- 在 📁 source中會看到 📁 categories
- 修改 📁 categories中的 index.md檔案,插入
type: "categories"
1
2
3
4
5
title: Categories
date: 2020-10-22 11:16:05
type: "categories" - 在 _post內的其中一份檔案插入
categories: hexo教學
1
2
3
4
5
title: 文章標題
data:
categories: hexo教學 - 重新產生靜態檔案,可以在導覽列看到多了一個分類分頁
建立標籤
與分類的步驟一樣,但內容改變。
- 輸入
hexo new page 'tags'
- 在 📁 source中會看到 📁 categories
- 修改 📁 tags index.md檔案,插入
type: "tags"
1
2
3
4
5
title: Tags
date: 2020-10-22 11:16:05
type: "categories" - 在 _post內的其中一份檔案插入
categories: hexo教學
若需要多個標籤,可以這樣輸入1
2
3
4
5
title: 文章標題
data:
tags: hexo教學1
2
3
4
5
tags:
- hexo教學
- 教學文 - 重新產生靜態檔案,可以在導覽列看到多了一個標籤分頁
若沒看到分頁出現,可能是 Next主題的設定沒有開啟,可以在 Next主題的設定檔中開啟,路徑為 themes\next_config.yml,
1 | menu: |