Why Your Custom Post Type UI Taxonomies Aren't Showing Up: A Troubleshooting Guide
Content
If you've used the Custom Post Type UI plugin to create custom taxonomies, you might have run into a common frustration: they don't appear where you expect them to. Based on community support threads, this is one of the most frequent issues users encounter. This guide will walk you through the most common reasons why your taxonomies might not be displaying and how to fix them.
Common Symptoms
- Taxonomy filter dropdowns are missing in the WordPress admin.
- Custom terms don't show up on your archive or single post pages.
- Archive pages for your taxonomy terms return a 404 error or show "Nothing Found".
- Your taxonomy doesn't appear in third-party page builders like Elementor or Divi.
- The "Show Admin Column" for your taxonomy is not visible in the post list.
1. Check Your Taxonomy Registration Settings
The first place to look is in your taxonomy settings within the Custom Post Type UI interface. Two specific settings are often overlooked:
- Show Admin Column: This must be set to "True" for your taxonomy terms to appear as a column in your post type's list view. It is set to "False" by default.
- Associated Post Types: Double-check that you have correctly assigned your custom taxonomy to the intended post type(s). A taxonomy will not appear on a post edit screen if it is not associated with that post type.
2. The Permalinks Refresh
This is the most common fix for 404 errors on single custom posts or taxonomy archives. Whenever you register a new post type or taxonomy, you must refresh WordPress's permalink rules.
How to do it: Navigate to Settings > Permalinks in your WordPress admin and simply click "Save Changes" without making any modifications. This flushes the rewrite rules and often resolves the issue immediately.
3. Understanding Archive Queries
By default, WordPress does not include custom post types in standard taxonomy archive queries (like category or tag pages). If you have a post type "Recipes" with a taxonomy "Cuisine," visiting the "Cuisine" archive will not show the "Recipes" posts unless you modify the main query.
This requires adding a code snippet to your theme's functions.php file to include your custom post types in these queries. The Custom Post Type UI team has documentation on this specific scenario.
4. Conflicts with Themes and Other Plugins
Your theme or other plugins might be interfering with how taxonomies are displayed.
- Page Builders (Elementor, Divi): These tools often have their own logic for querying and displaying content. Your custom taxonomies may not appear in their dropdowns by default. You may need to consult your theme or page builder's support for how to query custom taxonomies within their system.
- Filtering/Query Plugins: Plugins that filter posts (e.g., "Filter Everything") handle taxonomy queries themselves. If multiple term selections cause a 404, the issue likely lies with that plugin's configuration or code, not with Custom Post Type UI.
- Caching: If you use a caching plugin (e.g., WPRocket), clear its cache after making changes to your post types or taxonomies to ensure you are seeing the latest version of your site.
5. Displaying Terms on the Front End
Custom Post Type UI registers the taxonomies, but displaying them on your website is a theme function. To output the terms of a custom taxonomy for a post, you need to use the appropriate WordPress function in your template file (e.g., single.php, archive.php).
The recommended function is get_the_term_list() or the_terms(). For example, to display terms from a taxonomy called 'brands', you would use:
<?php the_terms( $post->ID, 'brands', 'Brand: ', ', ', ' ' ); ?>
Conclusion
Most issues with taxonomies not appearing can be solved by methodically checking the settings within Custom Post Type UI, refreshing permalinks, and understanding that some functionality requires theme-level implementation. If problems persist after trying these steps, the issue may be specific to a plugin or theme conflict, which would require more targeted debugging, such as switching to a default theme temporarily to test.
Related Support Threads Support
-
Custom Categories or tags are not visible on listing pagehttps://wordpress.org/support/topic/customcategories-or-tags-are-not-visible-on-listing-page/
-
Custom Taxonomy query to match all termshttps://wordpress.org/support/topic/custom-taxonomy-query-to-match-all-terms/
-
Doesn’t show all subtaxonomieshttps://wordpress.org/support/topic/doesnt-show-all-subtaxonomies/
-
How to filter custom post type by post_tag?https://wordpress.org/support/topic/how-to-filter-custom-post-type-by-post_tag-2/
-
Taxonomy Not Showing In Screen Optionshttps://wordpress.org/support/topic/taxonomy-not-showing-in-screen-options/
-
CPTui – Hierarchyhttps://wordpress.org/support/topic/cptui-hierarchy/
-
Custom Taxonomy for CPT Archive page emptyhttps://wordpress.org/support/topic/custom-taxonomy-for-cpt-archive-page-empty/
-
menu taxonomyhttps://wordpress.org/support/topic/menu-taxonomy/
-
How to retrieve Taxonomy value(s) for a CPThttps://wordpress.org/support/topic/how-to-retrieve-taxonomy-values-for-a-cpt/
-
Query for multiple terms of a custom taxonomy on CPT gives 404https://wordpress.org/support/topic/query-for-multiple-terms-of-a-custom-taxonomy-on-cpt-gives-404/
-
Default Taxonomies emptyhttps://wordpress.org/support/topic/default-taxonomies-empty/
-
Bug related to CPT UI plugin taxonomieshttps://wordpress.org/support/topic/bug-related-to-cpt-ui-plugin-taxonomies/
-
taxonomies wont display on some pageshttps://wordpress.org/support/topic/taxonomies-wont-display-on-some-pages/
-
Sir, How to showing post author for CPThttps://wordpress.org/support/topic/sir-how-to-showing-post-author-for-cpt/
-
Categories affecting all post typeshttps://wordpress.org/support/topic/categories-affecting-all-post-types/
-
Can’t display CPT termshttps://wordpress.org/support/topic/cant-display-cpt-terms/
-
Taxonomy loop not populatinghttps://wordpress.org/support/topic/taxonomy-loop-not-populating/
-
CPT Taxonomy issuehttps://wordpress.org/support/topic/cpt-taxonomy-issue-2/
-
Get Registered Post Types into CPT UIhttps://wordpress.org/support/topic/get-registered-post-types-into-cpt-ui/
-
Don’t see the category column in the cpt posts overviewhttps://wordpress.org/support/topic/dont-see-the-category-column-in-the-cpt-posts-overview/
-
How to link to CPT/taxonomy archive?https://wordpress.org/support/topic/how-to-link-to-cpt-taxonomy-archive/
-
Displaying post count in taxonomy categoryhttps://wordpress.org/support/topic/displaying-post-count-in-taxonomy-category/
-
Tags and Category Blocks not showing in CThttps://wordpress.org/support/topic/tags-and-category-blocks-not-showing-in-ct/
-
Error 404https://wordpress.org/support/topic/error-404-75/
-
If in_category function for Custom Taxonomieshttps://wordpress.org/support/topic/if-in_category-function-for-custom-taxonomies-2/
-
Custom Taxonomy not showing in query termhttps://wordpress.org/support/topic/custom-taxonomy-not-showing-in-query-term/
-
Taxonomyhttps://wordpress.org/support/topic/taxonomy-22/
-
Order of operations: CPT registration; Custom Taxonomy registrationhttps://wordpress.org/support/topic/order-of-operations-cpt-registration-custom-taxonomy-registration/
-
Custom taxonomy parents items not showing anymorehttps://wordpress.org/support/topic/custom-taxonomy-parents-items-not-showing-anymore/
-
Post is not showing in Taxonomies public url Using WpCore Taxonomieshttps://wordpress.org/support/topic/post-is-not-showing-in-taxonomies-public-url-using-wpcore-taxonomies/
-
Remove Taxonomies from WP Stock Post Typehttps://wordpress.org/support/topic/remove-taxonomies-from-wp-stock-post-type/
-
CPTUI not filtering correctlyhttps://wordpress.org/support/topic/cptui-not-filtering-correctly/
-
Custom Taxonomy doesn’t show up in new custom posthttps://wordpress.org/support/topic/custom-taxonomy-doesnt-show-up-in-new-custom-post/
-
CPT Taxonomy not workhttps://wordpress.org/support/topic/cpt-taxonomy-not-work/
-
CPT-UI: How to get Taxonomy Term to appear in post.https://wordpress.org/support/topic/cpt-ui-how-to-get-taxonomy-term-to-appear-in-post/
-
How to show a taxonomy in a newly created CPThttps://wordpress.org/support/topic/how-to-show-a-taxonomy-in-a-newly-created-cpt/
-
Posts indexation after taxonomy changeshttps://wordpress.org/support/topic/posts-indexation-after-taxonomy-changes/
-
Archive/Category/Taxonomy Template Loop Not Workinghttps://wordpress.org/support/topic/archive-category-taxonomy-template-loop-not-working/
-
custom taxonomieshttps://wordpress.org/support/topic/custom-14/
-
The CPT is not displayed in the taxonomieshttps://wordpress.org/support/topic/the-cpt-is-not-displayed-in-the-taxonomies/
-
CPT taxonomy/vocabulary not displaying on frontendhttps://wordpress.org/support/topic/cpt-taxonomy-vocabulary-not-displaying-on-frontend/
-
CPT not showing custom taxonomieshttps://wordpress.org/support/topic/cpt-not-showing-custom-taxonomies/
-
Unable to Create Custom Taxonomy Archivehttps://wordpress.org/support/topic/unable-to-create-custom-taxonomy-archive/
-
taxonomieshttps://wordpress.org/support/topic/taxonomies-28/
-
Taxonomy page not showing postshttps://wordpress.org/support/topic/taxonomy-page-not-showing-posts/
-
Displaying category descriptions using custom taxonomy and cpthttps://wordpress.org/support/topic/displaying-category-descriptions-using-custom-taxonomy-and-cpt-2/