Hexo-nexT博客搭建-Hexo优化-首页隐藏特定文章

推荐先阅读【2022教程全】Hexo博客 + nexT主题

themes/hexo-theme-next/layout/index.swig 文件添加2行

image-20220815155933814

{%- for post in page.posts.toArray() %}
{% if post.notshow != true %}
{{ partial('_macro/post.swig', {post: post, is_index: true}) }}
{% endif %}
{%- endfor %}

如图:

image-20220814173651820

然后在文章内添加 notshow: true

---
title: 资源速查-SSM整合
abbrlink: '73e3'
date: 2022-08-13 20:07:47
categories: 其他工具
notshow: true
---

然后一键3连,刷新配置:

hexo clean && hexo g && hexo s

其他主题同理。