LEGACY FEATURE MAP

How Sideblog worked in early WordPress

The plugin relied on ordinary posts assigned to an asides category, then exposed them through a widget or theme call.

Independent archive3 min readReviewed 2026-09-03

The historical workflow

  1. Create an asides category. Short updates remained ordinary WordPress posts.
  2. Select the category. Plugin settings identified which content belonged in the sideblog.
  3. Choose a display count. The output showed a limited stream of recent items.
  4. Place the output. Publishers used a sidebar widget or a PHP function in the theme.
  5. Publish short posts. Adding a post to the category placed it in the compact stream.

Why the model was effective

It reused WordPress posts, dates, categories and publishing permissions instead of creating a separate data store. The weak point was presentation coupling: a plugin and theme integration became responsible for output that modern block themes can often assemble with core tools.

Modern translation

ApproachContent modelBest forMain tradeoff
Posts + dedicated categoryStandard WordPress postsShort updates that should remain in feeds and archivesRequires theme rules to keep short posts visually distinct
Category + Query Loop blockCore blocks and taxonomyBlock themes with no custom PHP requirementLayout control varies by theme and site-editor experience
Custom post typeSeparate structured content typeUpdates needing their own fields, archive and permissionsRequires durable registration and a migration plan
Curated notes pageOne maintained page or collectionLow-volume notes where simplicity matters mostIndividual notes may lack stable URLs and feed entries
COMMON QUESTIONS

Frequently asked questions

Did Sideblog store content outside WordPress posts?

The historical instructions describe creating normal posts in a selected asides category. That made the content conceptually portable even if the display plugin was retired.