Taxonomy
Quick Definition
A taxonomy is a system for classifying and grouping content in WordPress. The two built-in taxonomies are Categories (hierarchical) and Tags (flat). You can also create custom taxonomies.
What Is a Taxonomy?
A taxonomy is "a fancy word for the classification/grouping of things." Built-in: Categories (hierarchical) and Tags (flat). Register custom ones with register_taxonomy().
Examples: Genre (books), Color (products), Location (real estate), Cuisine (recipes).
Stored in: wp_terms, wp_term_taxonomy, wp_term_relationships.
Why It Matters
Good taxonomy structure improves navigation and SEO. See our SEO checklist and plugins guide.
Sources: Developer.WordPress.org — Taxonomies, WordPress.org — Taxonomies, Developer.WordPress.org — Categories, Tags & Custom Taxonomies