Custom Taxonomies in Themes — a practical guide to WordPress taxonomies in themes with clear examples you can reuse in real projects.
WordPress Theme Development Series (37/96). Prefer one article? Read the complete WordPress theme development tutorial.
Short description
Use `taxonomy-{taxonomy}.php` templates and `the_terms()` for front-end output.
Term output
the_terms(get_the_ID(), 'genre', '<p>Genres: ', ', ', '</p>');