Hexo-nexT博客搭建-Hexo优化-首页隐藏特定文章 发表于 2022-08-15 更新于 2024-08-18 本文字数: 467 阅读时长 ≈ 1 分钟 Hexo-nexT博客搭建 推荐先阅读:【2022教程全】Hexo博客 + nexT主题 themes/hexo-theme-next/layout/index.swig 文件添加2行 {%- for post in page.posts.toArray() %} {% if post.notshow != true %} {{ partial('_macro/post.swig', {post: post, is_index: true}) }} {% endif %}{%- endfor %} 如图: 然后在文章内添加 notshow: true ---title: 资源速查-SSM整合abbrlink: '73e3'date: 2022-08-13 20:07:47categories: 其他工具notshow: true--- 然后一键3连,刷新配置: hexo clean && hexo g && hexo s 其他主题同理。