I believe what you are looking for is the get_terms function. I found it looking at the code for wp_tag_cloud, here is the source of the function. This little snippet should get you what you are wanting.
$terms = get_terms("characters");
if ( empty( $tags ) || is_wp_error( $tags ) )
return;
foreach ( $terms as $term ) {
echo $term->name;
}
Related Posts:
- Get Posts by Custom Post Type ,Taxonomy, and Term
- How to limit the number of terms (terms acts like categories)
- How do I list custom taxonomy terms without the links?
- wp_insert_term doesn’t work with custom post type’s taxonomy
- Retrieve single term slug
- Get list of terms of current taxonomy archive for another taxonomy
- Get all taxonomies for all post types
- How to check the terms in single custom post type template
- Issue on Creating Custom Tax Term Dynamically From Another CPT Meta-box On Publish
- How do I display the taxonomy for a custom post type in an array
- Custom Taxonomy Terms in Menu lead to which page?
- How to order taxonomy terms by most recent post?
- Get all posts for custom taxonomy term
- Pages of my taxonomy terms are showing all posts
- Filter Term By Parent Term – Custom Post Type
- Filter By Term Not Working – Custom Post Type
- WordPress add taxonomies/terms list as a menu in archive page
- get_the_term_list() wanting to loop through the returned values
- Display associated taxonomy child name on single CPT page
- Issue On Listing Woocommerce Parent Tag List
- Taxonomy Archive URL + Template
- Get The Post Type A Taxonomy Is Attached To
- Custom Taxonomy’s Label to change the text appearing in Appearance > Menu
- How to completely disable a taxonomy archive on the frontend?
- How can I list all the categories under a Custom Post Type (taxonomy)?
- Not Able to Insert Taxonomy Term Using wp_insert_post()
- array_pop() expects array, boolean given for $event_type_term ->slug
- How to show term-specific post list, without posts associated with child terms?
- Creating a function that receives the taxonomy terms that have been changed in a custom post type
- Custom post type taxonomy template
- Is slug “type” reserved and can’t be used in taxonomy rewrite?
- Get the terms of a custom taxonomy for a specific author in author template
- Remove Taxonomy Slug when No Taxonomy is Assigned to Custom Post Type?
- Taxonomy Templates
- Category page only displaying the posts from a custom type
- Custom Taxonomy Creates Unwanted Integer Terms on Post Save
- How to get posts from multiple custom post types according to it’s custom taxonomy terms?
- Displaying a custom post types custom taxonomy value?
- Query Multiple Taxominies Across Multiple Post type’s
- Update post terms with custom taxonomy
- Filtering WP_Query Dynamically on the Front-End
- Get template part using a custom taxonomy term
- Custom Post Type Taxonomy Filters
- Displaying custom taxonomy in the admin list of a custom post type
- Taxonomy custom post type URL
- How do I display the taxonomy term alongside the post type post title?
- Custom post taxonomies as tax_query terms?
- Get related posts of child term of custom post type
- How do I check if the user is on a taxonomy term parent, child or grandchild page?
- Suggested Post and Taxonomy structure
- Custom Post, set object Taxonomy terms in plugin
- Custom post with more than one custom taxonomy
- Lists custom taxonomy terms that has specific custom field value assigned to the term (not post)
- Get the taxonomy of a post hierarchically
- Display taxonomy terms, child terms and posts in a template
- How to get list of taxonomy slugs ordered parents>childs?
- Use custom walker to add taxonomy terms to main nav menu
- Conditional statement for if archive page has posts which contain certain taxonomies/categories/tags, show those terms
- Add term to custom post type on draft
- Multiple tag cloud filtering
- Get url.com/post_type/taxonomy/term work!
- Different Category system needed for the Custom Post Type
- Custom Post Type Category Link
- Custom Post type category pages template and loop
- How to get WordPress term attached to the Post?
- Get parent category id from child category page for custom taxonomy
- How to get only child terms from a custom taxonomy of current post type?
- How can I create an automatic drop down menu with my tags?
- How to define a term for custom taxonomy
- List custom taxonomy as navigation – taxonomy pages with all it’s posts?
- Get taxonomy singular name instead of taxonomy slug inside $taxonomy query
- Get the link of the first post of a custom taxonomy in a custom taxonomy list
- Creating custom post type posts and associating them with a post from another custom post type
- Custom Post taxonomy template
- Query Multiple Custom Post Types & Exclude a Taxonomy Term
- Using get_terms() to list terms from one custom taxonomy AND from one specific built-in category
- Filter taxonomy by CPT
- automatically select taxonomy based on post meta
- Display 3 level taxonomies
- List posts that have the current url taxonomy
- Custom Post Type / Taxonomy / Term – what template to use to avoid 404-page?
- Display title of all custom posts from same taxonomy term on a custom post template
- wordpress does not see the correct custom taxonomy hierarchy
- If custom taxonomy exist on post?
- Get category list & taxonomy list from different post type using post id?
- How to get all posts assigned to a taxonomy term only?
- I want to create an archive and single page for a custom taxonomy for a custom post type
- Taxonomy’s title
- Display all posts from single taxonomy term
- How to show post which has the specific taxonomy terms?
- Displaying the Taxonomy and a Queried Term on a taxonomy.php page?
- Hide Custom Taxonomy title if not associated with another Custom Taxomony
- How to pass taxonomy terms to WP_Query along with $args?
- Custom post type post taxonomies
- insert a taxonomy for a custom post type
- Custom post type URL returns 404 error page
- How to add to taxonomies to a post type
- Filtering custom post types using category taxonomy
- Is it possible for post and custom post type to share a category base slug?
- How to use wp_set_object_terms depending on page ID?