If you just want to list them you can use the get_terms function:
$terms = get_terms( 'my_taxonomy' );
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
echo '<ul>';
foreach ( $terms as $term ) {
echo '<li>' . $term->name . '</li>';
}
echo '</ul>';
}
Read the codex, it has a lot of examples:
https://codex.wordpress.org/Function_Reference/get_terms
Related Posts:
- How to list all categories and tags in a page?
- Custom post type taxonomy template
- Show Post Count of a Category
- How to create new category for custom post type?
- Display all posts in main category and 1 subcategory
- Categories of custom taxonomy don’t show any posts
- How to display custom taxonomies with links in filter menu?
- Limit amount of posts made within a custom taxonomy
- Custom Post Type Category Link
- Custom Post type category pages template and loop
- get_category_link() for custom post type does not include custom slug rewrite?
- Targeting categories in custom fields
- How to show related posts of category on post within custom posttype
- Create custom post type categories
- Set a Default CPT taxonomy by taxonomy id
- How to manage a dynamic multi-level page hierearchy system?
- Categories manage
- Is it possible for post and custom post type to share a category base slug?
- Taxonomy: Why ‘with_front’ => false DOES NOT WORK?
- Exclude a category from WP_Query
- Custom taxonomy not showing up when adding a new custom post type
- How to filter custom post types by custom category taxonomy
- Is there a way to use regular categories with custom post types?
- Create an archive page for custom taxonomies
- remove support for ‘Categories’ for a custom post type
- How can you make permalink work for custom post type and taxonomy?
- Filter get_categories() for taxonomy term in WordPress
- How do I list terms of a custom taxonomy at i.e. domain.com/brands/
- Taxonomy-{taxnonomy}.php is not working
- Get list of terms of current taxonomy archive for another taxonomy
- Associate Taxonomies Across Post Types
- Display Custom Category (taxonomy) Name in Custom Post Type
- Order WordPress Custom Taxonomy Pages & Pagination Not Working
- Relationship between two taxonomies and a custom post type [closed]
- Menu Multiple Taxonomies
- Combining custom post type and post category
- How to make a custom taxonomy selectable in post publish area?
- Custom page template for category taxonomy
- How to get the post type from a category id?
- Insert HTML inside link in a walker
- Set menu active state for custom posttype and category, given custom taxonomy term
- How do I get array of types associated with a taxonomy?
- Show category ID on custom post type
- wp_get_post_terms on custom post type with custom taxonomies returning an empty array
- get_category_parents for custom post type taxonomy
- Cannot add category or custom taxonomy from admin. WordPress site is hosted in Windows 16 server via IIS. No XAMPP or WAMP
- How to Filter custom post type by taxonomy?
- Why are taxonomy terms not saving when using custom meta boxes with radio button taxonomy selectors?
- Hide parent categories when clicked, and show it’s childs
- How do I display the grand child items of a taxonomy term?
- Is it better to use WordPress Custom Post Types or Taxonomies?
- How to get custom posts sub category link
- How to display products name in a non-alphabetical order, in a custom field (taxonomy)?
- Taxonomy in URL
- How to Set Taxonomy Object Description?
- Custom select query for taxonomies that have posts categorized in another taxonomy
- Variable not working in WP_Query
- Why does my taxonomy have a category style div id?
- Alphabetically sort a taxonomy.php template by post title
- Show Taxonomies with admin area for custom post type?
- Custom taxonomy template list not working (404)
- Use the custom post type archive for taxonomies?
- Custom Post Type Categories URL not displaying posts
- Taxonomy template page not working
- get_terms() parent, child and grandchild
- Copy/Move selected taxonomy terms to another taxonomy for posts
- Get posts by category name
- Custom Post Type Custom Archive Page Not Working
- Retrieve Custom Taxonomies with Description and Slug
- Custom post type category permalinks and archive pages
- Query Custom Post Type by Taxonomy
- Can’t Get Parent and Child Categories of Custom Taxonomy to Display
- How can i display a taxonomy? i have created a plugin and then a custom type. and a taxonomy , also i have register it
- Define multiple prefixes for custom post type
- How to order taxonomy terms by most recent post?
- How to set “section categories”?
- Taxonomies are not showing in the category dropdown
- Change custom post taxonomy values from front-end
- List all posts associated under custom taxonomy
- How to transfer categories (default) to custom taxonomy?
- Custom Taxonomy – fields
- Pages of my taxonomy terms are showing all posts
- Custom post type category link + add to menu
- Single taxonomy for different custom post types
- Best approach to allow front-end display of posts’ reviewers?
- Dropdown switching subcategories portfolio
- Custom Post Type and Taxonomies, creating the corresponding template file and loop the data
- Post Editor: display categories from current post type taxonomy only?
- Displaying taxonomy icon outside archive page
- Archive templates based on taxonomies
- Show taxonomies from specific CPT
- Customize category URL
- Category / Custom Post Type permalink issue
- See the process of creating a taxonomy and tell me where I made a mistake
- show only one category posts in admin
- How can I show second most recent post in sidebar, if most recent post is open in the browser?
- How to add to taxonomies to a post type
- Filtering custom post types using category taxonomy
- Taxonomy term archive claims there are no posts, but there are. How to resolve?
- How to list custom taxonomy terms without the hyperlinks?