hexo next主题添加分类和标签

添加分类

  1. 新建一个分类页面

    $ hexo new page categories
    
  2. source文件夹下有了categories/index.md,可以编辑,新增type属性categories

    title: categories
    date: 2019-05-12 11:41:32
    type: categories
    
  3. 打开next主题下的_config.yml,找到menu,将categories: /categories/ || th注释去掉,没有的话添加

  4. 写文章时归入分类,只需在文章顶部标题部分加上categories即可自动创建分类名并将文章归入分类中

    title: hexo next添加分类
    categories: hexo
    

添加标签

  1. 新建一个标签页面

    $ hexo new page tags
    
  2. source文件夹下有了tags/index.md,可以编辑,新增type属性tags

    title: tags
    date: 2019-05-12 11:57:08
    type: tags
    
  3. 打开next主题下的_config.yml,找到menu,将tags: /tags/ || tags注释去掉,没有的话添加

  4. 写文章时归入分类,只需在文章顶部标题部分加上tags即可自动创建分类名并将文章归入分类中

    title: hexo next添加标签
    tags:
        - hexo
        - next
    

以上~