0%

Hexo教學(六) 文章標籤與分類

先前我們學到如何新增一篇文章,這篇會說明如何將文章上標籤與分類管理。

建立分類

  1. 輸入 hexo new page 'categories'
  2. 📁 source中會看到 📁 categories
  3. 修改 📁 categories中的 index.md檔案,插入 type: "categories"
    1
    2
    3
    4
    5
    ---
    title: Categories
    date: 2020-10-22 11:16:05
    type: "categories"
    ---
  4. 在 _post內的其中一份檔案插入 categories: hexo教學
    1
    2
    3
    4
    5
    ---
    title: 文章標題
    data:
    categories: hexo教學
    ---
  5. 重新產生靜態檔案,可以在導覽列看到多了一個分類分頁

建立標籤

與分類的步驟一樣,但內容改變。

  1. 輸入 hexo new page 'tags'
  2. 📁 source中會看到 📁 categories
  3. 修改 📁 tags index.md檔案,插入 type: "tags"
    1
    2
    3
    4
    5
    ---
    title: Tags
    date: 2020-10-22 11:16:05
    type: "categories"
    ---
  4. 在 _post內的其中一份檔案插入 categories: hexo教學
    1
    2
    3
    4
    5
    ---
    title: 文章標題
    data:
    tags: hexo教學
    ---
    若需要多個標籤,可以這樣輸入
    1
    2
    3
    4
    5
    ---
    tags:
    - hexo教學
    - 教學文
    ---
  5. 重新產生靜態檔案,可以在導覽列看到多了一個標籤分頁

若沒看到分頁出現,可能是 Next主題的設定沒有開啟,可以在 Next主題的設定檔中開啟,路徑為 themes\next_config.yml,

1
2
3
4
5
6
7
8
9
menu:
home: / || fa fa-home
#about: /about/ || fa fa-user
tags: /tags/ || fa fa-tags
categories: /categories/ || fa fa-th
archives: /archives/ || fa fa-archive
# schedule: /schedule/ || fa fa-calendar
# sitemap: /sitemap.xml || fa fa-sitemap
# commonweal: /404/ || fa fa-heartbeat