转载自——Hexo的Butterfly下如何隐藏部分文章不在首页显示 | 张洪Heo (zhheo.com)

修改内容

  • 修改主题文件

    themes/butterfly/layout/includes/mixins/post-ui.pug

    修改内容

    1
    2
    3
    4
    mixin postUI(posts)
    each article , index in page.posts.data
    + if article.hide !== true
    .recent-post-item

    if article.hide !== true 后面的内容全部需要tab添加一层缩进

  • 修改文章文件

    1
    2
    3
    4
    ---
    title: xxx
    + hide: true
    ---
  • 问题

    这个只影响了渲染,但是不影响生成器生成,所以如果你每页文章为10篇,而你第一页隐藏了4篇,那么首页第一页只会展示6篇。