Media & Content Organization
WordPress Fundamentals
Chapter 7 · Media & Content Organization
Posts and Pages hold your content; themes and plugins shape what surrounds it. This chapter covers what ties everything together — the media you upload, how posts get organized for browsing, and the menus and small content blocks that make a site actually navigable.
The Media Library
Every image, video, and document uploaded to a site lands in the Media Library (Media → Library), a central place to browse, search, and reuse anything already uploaded rather than uploading duplicates.
- Alt text — a written description attached to each image, read aloud by screen readers and shown if an image fails to load; genuinely important for accessibility, not an optional metadata field
- Automatically generated image sizes — WordPress creates several resized versions of every uploaded image (commonly thumbnail, medium, large, and the original full size) so the right size can be used in different contexts without manual resizing
- Featured image — one image chosen to represent a Post, used in blog listings, social-media link previews, and anywhere a theme displays a post's own thumbnail
Categories vs. Tags — A Distinction Worth Getting Right
Both organize Posts specifically — per WordPress Fundamentals 3's own compare table, Pages don't use either by default — but they solve genuinely different organizational problems.
| Categories | Tags |
|---|---|
| Broad, structural — the site's main topic areas | Granular, cross-cutting — specific topics a post touches on |
| Hierarchical (can have parent/child categories) | Flat — no hierarchy at all |
| Every post has at least one — falls back to "Uncategorized" if none is chosen | Entirely optional |
| Think: a book's table of contents | Think: a book's index |
Breakfast, Dinner, Desserts — each post belonging to exactly one or two. Tags would then cross-cut those categories entirely: vegan, 30-minutes-or-less, one-pot — connecting a Breakfast post and a Dinner post that share a tag, something categories alone could never express.
Navigation Menus
Appearance → Menus lets you build a navigation structure by adding Pages, Posts, Categories, or custom links, then dragging them into the order and nesting you want (nested items become dropdown submenus in most themes).
Widgets
Widgets are small, self-contained content blocks placed into designated areas a theme provides — commonly a sidebar or a footer — things like a search box, a list of recent posts, a category list, or custom text. In modern WordPress, the Widgets screen itself is built using the same block system introduced in WordPress Fundamentals 4, rather than a separate, older widget interface.
Hands-On Exercises
A cooking blog wants to let readers browse "all vegan recipes" across every meal category (breakfast, dinner, dessert). Explain whether this calls for a category or a tag, and why, using this chapter's own reasoning.
📄 View solutionA site owner switches to a new theme and notices their footer menu has disappeared from the site, even though the menu itself still exists under Appearance → Menus. Explain what most likely happened.
📄 View solutionExplain why this chapter treats alt text as more than an optional metadata field, and describe concretely who is affected if it's left blank.
📄 View solutionChapter 7 Quick Reference
- The Media Library centralizes uploads; alt text matters for accessibility, WordPress auto-generates several image sizes, and a Post's featured image represents it in listings
- Categories — broad, hierarchical, structural (table of contents); Tags — granular, flat, optional, cross-cutting (index)
- Both apply to Posts only, not Pages, per WordPress Fundamentals 3
- Navigation menus are built under Appearance → Menus, but their actual display locations are defined by the active theme
- Widgets are theme-dependent content blocks, now block-based, and increasingly absorbed into Full Site Editing on modern themes
- Next chapter: Users & Roles