Content Management
This page covers the most common content operations in Admin: posts, pages, categories, and tags.
Posts
Posts are the core content type for blogs and news sites. They support Markdown, cover images, summaries, and SEO fields.
Create a post
- Posts → New
- Enter a title (required)
- Write Markdown body in the editor
- Optional: cover image, summary, slug, categories, tags
- Click Publish or Save as draft
Post status
| Status | Description |
|---|---|
| Draft | Visible in Admin only; Headless API excludes by default |
| Published | Visible on visitor site and API |
| Trash | Soft-deleted, recoverable |
Slug
The slug determines the URL path. For example, slug hello-world maps to /post/hello-world (exact path depends on theme routing).
- Use lowercase English and hyphens
- With the SEO plugin enabled, you can set additional meta keywords and descriptions
Pages
Pages hold relatively fixed content: About, Privacy Policy, landing pages, etc.
- Pages → New — workflow similar to posts
- Pages usually do not participate in category archives; themes render dedicated routes
- Home page behavior can be configured in settings (theme-dependent)
Categories
Categories organize content and may support hierarchy (theme-dependent).
- Manage under Posts → Categories
- Create: name, slug, description, parent category
- Select one or more when editing posts
Tags
Tags are finer-grained than categories, useful for cross-cutting topics.
- Posts → Tags
- Multi-select when editing posts
- Themes typically expose
/tag/{slug}archive pages
Bulk actions
From the post list you can:
- Multi-select for bulk delete / status change
- Filter by category, tag, status
- Search by title
Plugin enhancements
| Plugin | Effect on content |
|---|---|
| hello-world | Auto-generates summary on publish |
| seo | Meta slug, keywords, description in editor |
| image-optimizer | Batch WebP optimization for media library images |
Installation: Plugin user guide.
Migrating from other platforms
- Export WordPress / Markdown and import via API or future import tools (roadmap)
- Headless bulk create:
POST /api/article+ API Key — see Headless API
Related docs
- Create your first blog post (step-by-step with screenshots)
- Site settings & SEO
- Comment moderation