Hexo博客首页隐藏部分文章(hexo-generator-index2)
简介
hexo-generator-index2是带过滤功能的Hexo首页生成器插件。在官方的首页生成器基础上添加了过滤指定分类/标签的功能。比如,在首页只显示指定分类下面的文章列表。 除此之外,它还在指定的目录下生成指定类型的文章,比如在web目录下生成Web相关的文章。
安装
1 | npm install hexo-generator-index2 --save |
hexo-generator-index2可以完全替代官方的hexo-generator-index,所以安装之后,先卸载官方的插件,不然会引起一些冲突。
选项
1 | # index2 generator是否包含官方的hexo-generator-index,默认true(包含) |
- per_page: Posts displayed per page. (0 = disable pagination)
- order_by: Posts order. (Order by date descending by default)
- layout: Set the layout, default is index
- path: Output path, if path is ‘’, means output to the root directory (http://127.0.0.1:4000/ )
- index: Home index or not, if true and the path is ‘’, same to offical hexo-generator-index
- include: Posts filter include option
- exclude: Posts filter exclude option
除了include和exclude,其它如per_page和order_by都是原有的官方首页生成器选项,不必更改。
Include/exclude 选项格式为属性 值(注意,属性与值中间有个英文的空格),可选的属性有:
- category: 文章分类
- tag: 文章标签
- path: 文章源路径
注意
已知 Bug
隐藏的文章会占用总文章数量,会影响分页数量(尾页)。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 竹山一叶!
评论