You can get every Taxonomy by
$categories = get_the_terms( get_the_id(), $taxonomy-slug );
if ( is_array( $categories ) ) {
foreach ( $categories as $category ) {
echo '<a href="' . get_term_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> ';
}
}
Just fill in the slug of your custom taxanomy, and you are good to go.
If you just want to output the first Name, make a break after the echo.
get_the_terms() returns an Array of Taxonomyobjects, and you can easily output the first one.
Related Posts:
- How can I select a primary category?
- Display empty taxonomy terms with get_terms()
- Get WooCommerce product category list in functions.php
- Display List of Categories Within a Custom Taxonomy
- Is There a Difference Between Taxonomies and Categories?
- Check if a post is in any child category of a parent category
- How to export and import taxonomies (category, tag and/or custom taxonomy) and their terms
- get_categories for custom post type with a specific custom taxonomy attached
- Order get_terms() By Custom Field
- Control term order on a per-post basis
- How can I add the featured image functionality to a custom taxonomy?
- Combine two taxonomies in a hierarchical tree
- How to make custom taxonomy check boxes like ‘Categories’
- Are Categories, Tags and Custom Taxonomies any different in regards to SEO?
- How to create non-unique sub-category slugs?
- How to get next previous category in same taxonomy?
- Does WordPress Offer a Way to Find All of the Categories that Don’t Have Children?
- Add custom taxonomy terms to WordPress menu dynamically & append #slug to url
- Removed slug from CPT, now How/where do I hook the filter to the taxonomy term archive pages link?
- Getting WordPress custom taxonomy/category?
- Get a list of Terms for a specific category
- How to get the number of child categories a specific parent category has?
- How can I convert some categories to a custom taxonomy?
- Get multidimensional array that reflects category hierarchy
- List Terms in Category
- display taxonomy slug from term ID
- Limit number of terms that a custom taxonomy can save per custom post type
- Change existing taxonomy settings when using custom taxonomy
- Display Taxonomy Terms in an option tag with value being the slug
- How to get the id from the custom category?
- How can i insert term in a specific language of Polylang?
- Why does the argument list_only do on Walker_Category_Checklist::start_el?
- Display Posts Loop for each parent and for each Child
- Is There a Difference Between Taxonomies and Categories?
- How can I edit the ‘Most Used’ tab in the categories meta-box to show another custom taxonomy?
- Get posts from specific taxonomy term
- Get posts under a category with SQL
- get_terms function not returning anything
- Ive got a term (get_term_by) but now I want to filter it by a category it is in?
- Question on using custom structures for categories
- Get Categories Where Taxonomy Equals ‘n’
- Display sibling categories on category page
- Echo text using is_tag
- Same menu for different taxonomies to reach different content
- Showing HTML if Post is In Certain Taxonomy Term
- How could I write a get_categories_by_year() function?
- Post to inherit custom category background image from parent
- How to get posts using category slug in ClassiPress?
- Combining these queries? (Same taxonomy term + same category as post)
- List taxonomy terms assigned to a post in hierarchical view
- How to set the same base url for two different taxonomies?
- Ordering terms whilst in loop
- outputting taxonomy hierarchy
- Why use hierarchical taxonomies instead of many custom taxonomies?
- Renaming default category taxonomy?
- How to Manage and link certain custom taxonomy?
- How to add a post with new Taxonomy without assigning to default category?
- List Terms by category
- get_adjacent_post_link excluded_terms ignored
- Why is my post categories not displaying?
- Problem importing categories and sub-categories
- Converting Categories (with ACF fields) to custom taxonomies
- Taxonomy term RestApi data 10 rows limitions
- hide_empty property not working when using get_terms
- How can I get the categories and subcategories separately?
- Share one taxonomy across multiple blogs in 3.0 [duplicate]
- Admin Panel – Disable Moving Selected Terms To Top of Metabox
- cat_is_ancestor_of() for custom taxonomies
- Get current term’s ID
- Get terms that are associated with products from current category
- How to add HTML5 ‘required’ attribute to wp_dropdown_categories() without JavaScripts?
- How do I get the slug of a custom taxonomy category of a post?
- Allow only 1 instance of each term in each custom taxonomy
- Show Post Count of a Category
- get_terms: determine if taxonomy term has children
- “show option all” on list categories doesn’t display taxonomy
- Display all posts in main category and 1 subcategory
- ACF: Display category name using taxonomy field
- Taxonomy name repeating when showing 2 posts from each category
- Shortcodes not working in category or tag description
- Custom taxonomy template for categories
- What does ‘category__in’ mean in queries?
- Get only immediate children (and not grandchildren) of a hierarchical custom taxonomy term
- How to add custom meta to ‘pre_get_terms’?
- How to group all terms children’s in custom taxonomy?
- Exclude categories by ID
- How to fix select filter on category
- Migrate the posts of a category to another blog as a custom taxonomy
- Set two terms for a post when they differ only by an accent
- Taxonomy custom check box meta field not getting saved
- Listing Cities A custom taxonmy by selection order
- Create custom post type categories
- Restrict retrieved terms by category?
- Set a Default CPT taxonomy by taxonomy id
- show only terms from parent category
- How get all media from a posts category by db?
- set_object_terms for custom taxonomy in custom post type – not working
- Filter Term By Parent Term – Custom Post Type
- Grouping parent categories into sections
- get_terms() – unexpected ‘=>’ (T_DOUBLE_ARROW) error