Back to blog

This is a Hidden Post Example

1 min read
examplehidden

This is a Hidden Post

This post has hidden: true in its frontmatter, so it will:

  1. Still be accessible via direct URL: /blog/hidden-example
  2. Still be generated as a static page during build
  3. NOT appear in the blog post list on /blog
  4. NOT appear in tag filters or recent posts

How to Use

To hide any blog post or paper, simply add hidden: true to the frontmatter:

---
title: "Your Post Title"
description: "Your description"
date: "2025-01-03"
tags: ["tag1", "tag2"]
hidden: true  # Add this line
---

When to Use Hidden Posts

  • Draft posts that aren't ready for public listing yet
  • Private posts that you want to share via direct link only
  • Archived content that you don't want in the main feed
  • Internal documentation that doesn't need public visibility

The post is still fully functional - all features work, it just won't show up in lists!