Quick Fix Summary
Fire up the Custom Post Type UI plugin in WordPress. Head to CPT UI → Add/Edit Taxonomies, set up your taxonomy (say, "Product Categories"), then save. Your new taxonomy shows up under Posts or whatever custom post type you picked.
What's Happening
WordPress taxonomies group content by shared traits—kind of like built-in categories and tags, but you can tweak them however you like. They can stack hierarchically (parent/child) or sit flat like tags. You can hook them onto regular posts, custom post types, or even links. WordPress 6.6+ (yes, even as of 2026) bakes in fancier taxonomy features, so they’re perfect for big, messy sites. Picture an online store slotting products into a "Product Type" taxonomy by size, color, or whatever makes sense.
The WordPress Developer Handbook spells it out: taxonomies get registered with register_taxonomy(), letting you stretch core features without breaking a sweat.
Step-by-Step Solution
- Install and activate the Custom Post Type UI plugin
- Jump into your WordPress dashboard, then hit Plugins → Add New.
- Search for Custom Post Type UI by WebDevStudios, install it, then flip the switch to activate.
- Create a new taxonomy
- In the admin sidebar, cruise over to CPT UI → Add/Edit Taxonomies.
- Under Taxonomy Settings, drop in a Plural Label ("Product Categories") and a Singular Label ("Product Category").
- Pick the Taxonomy Type: stick with Post for standard posts or switch to Custom Post Type if you’re targeting something like "Products."
- Toggle Hierarchical if you want parent/child nesting, and make sure Public is on so visitors can see it.
- Save and verify
- Hit Save Taxonomy at the bottom.
- Peek at your WordPress admin sidebar. Your shiny new taxonomy should show up under Posts or the linked custom post type.
- Open an existing post or spin up a fresh one. The taxonomy field will pop up in the editor, ready for action.