51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Hexo博客支持置顶和隐藏文章的功能(hexo-generator-index-custom)

前言 {#前言}

支持置顶与隐藏文章的 Hexo 首页生成器插件hexo-generator-index-custom。在官方的首页生成器的基础上添加了使用 top 置顶文章和 hide 隐藏文章的功能。

它会根据您的主题的 index 或 archive 格式生成首页。

不同之处 {#不同之处}

  • 置顶
    sticky 与 top 参数在文章的 Front-matter 中可以使用来置顶文章。高的 sticky (或 top) 值意味着它会被排到最前面。

因为在旧版本中,hexo-generator-index-custom 不能置顶文章到首页。

大多数人使用 hexo-generator-index-pin-top 来实现置顶功能

  • 隐藏文章
    在文章的 Front-matter 中使用 hide: true 可以隐藏文章(不在首页显示)。

安装 {#安装}

hexo-generator-index-custom可以完全替代官方的 hexojs/hexo-generator-index,所以安装之后,先卸载官方的插件,不然会引起一些冲突。

|---------------|-----------------------------------------------------------------------------------------------| | 1 2 3 | $ npm uninstall hexo-generator-index $ npm install hexo-generator-index-custom --save |

配置 {#配置}

在 _config.yml 中新增或修改如下配置:

|-------------------|-------------------------------------------------------------------------------------| | 1 2 3 4 5 | index_generator: path: '' per_page: 10 order_by: -date pagination_dir: page |

  • path: Root path for your blog's index page.
    • default: ""
  • per_page: Posts displayed per page.
    • default: config.per_page as specified in the official Hexo docs (if present), otherwise 10
    • 0 disables pagination
  • order_by: Posts order.
    • default: date descending
  • pagination_dir: URL format.
    • default: 'page'
    • awesome-page makes the URL ends with 'awesome-page/' for second page and beyond.

所有的配置均与官方首页生成器一样,不必修改。

使用方法 {#使用方法}

在文章开头的配置中添加 stickytop 参数,可以置顶文章。

其值可以是 true 或数字,数字越大,文章排在越前面。

|------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| | 1 2 3 4 5 6 7 8 9 10 | --- title: Hello World date: 2013/7/13 20:46:25 sticky: 100 --- --- title: Hello World date: 2013/7/13 20:46:25 top: 100 --- |

在文章开头的配置中添加 hide 参数,可以隐藏文章。

|-------------------|------------------------------------------------------------------------| | 1 2 3 4 5 | --- title: Hello World date: 2013/7/13 20:46:25 hide: true --- |


赞(5)
未经允许不得转载:工具盒子 » Hexo博客支持置顶和隐藏文章的功能(hexo-generator-index-custom)