明道学苑

学而不思则罔,思而不学则殆

0%

为基于Hexo的网站创建categories和tags页面

新建的Hexo项目无法访问categories和tags页面,如果网站要用到这两个页面,需要先创建它们。

创建categories和tags页面

hexo-install-plugins.shview raw
hexo new page "tags" 
hexo new page "categories"

修改tags页面的Front-matter

修改source/tags/index.md,在文件头部分增加下面的内容,这样可以禁用tags页面的评论功能。

type: tags
comments: false

中文网站建议将页面标题修改为中文,修改source/tags/index.md文件Front-matter中的title,结果如下:

title: 文章标签

修改categories页面的Front-matter

修改source/categories/index.md,在文件头部分增加下面的内容,这样可以禁用categories页面的评论功能。

type: categories
comments: false

中文网站建议将页面标题修改为中文,修改source/categories/index.md文件Front-matter中的title,结果如下:

title: 文章分类