get_the_category()
is for getting the default post categories and get_the_tag_list()
for the default post tags.
For custom taxonomies you must use get_the_terms()
, i.e. get_the_terms( 'categoria-video' )
and get_the_terms( 'tag-video' )
in your case.
Note that these functions don’t print anything, they just return an array. If you check out the documentation for get_the_terms()
you’ll find an example for displaying your terms though. In it’s most simple form it would look like this:
$terms = get_the_terms( get_the_ID(), 'tag-video' );
if ( $terms && ! is_wp_error( $terms ) ) :
foreach ( $terms as $term ) {
echo $term->name;
}
Related Posts:
- How to change permalink structure for custom post type and it’s taxonomies?
- Get the first post term
- Creating “static” taxonomies to choose from, inside custom post type?
- How to completely disable a taxonomy archive on the frontend?
- How can I list all the categories under a Custom Post Type (taxonomy)?
- How to list all categories and tags in a page?
- How to sort list of custom posts to get view like a tree of posts under categories and their children’s categories?
- How can you make permalink work for custom post type and taxonomy?
- How to get a list of term names of the custom post type im currently on in single.php
- List all custom post type posts from a given category?
- Custom post type taxonomy template
- get_categories for custom post type and filter by custom taxonomy (brand) and list child categories of a defined category
- Category page only displaying the posts from a custom type
- Show Post Count of a Category
- Custom Post Types and Categories?
- How to create new category for custom post type?
- Get Post Primary Category
- Pagination is not working on single-{slug}.php but works fine on page-{slug}.php
- How to get the post type from a category id?
- How to show CPTs in term archive
- Display all posts in main category and 1 subcategory
- Show category ID on custom post type
- 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
- Conditional statement for if archive page has posts which contain certain taxonomies/categories/tags, show those terms
- Custom Post Type Category Link
- Custom Post type category pages template and loop
- Categories and tags for custom post types
- get_category_link() for custom post type does not include custom slug rewrite?
- Targeting categories in custom fields
- Invalid Taxonomy
- Need help deciding on a taxonomy
- Get Posts by Category, Tag , and CPT Taxonomy
- Get assigned post categories
- Default Category Page not showing custom post type which has taxonomy category
- Categories won’t appear on custom post type
- Custom Post Type with modified permalink structure results in 404
- Custom post type, taxonomy and admin bar
- Displaying taxonomies as category links within sidebar and creating pages for these
- Custom post type archive page filters
- How to show related posts of category on post within custom posttype
- get taxonomies from terms
- Create custom post type categories
- Set a Default CPT taxonomy by taxonomy id
- how to create custom taxonomy drop downs for parents and child
- How to manage a dynamic multi-level page hierearchy system?
- Categories manage
- Reuse the “category” slug for a custom post type
- How to create groups like that in buddypress?
- Update Cateogory Taxonomy Count for Attachment Post Type
- WordPress add taxonomies/terms list as a menu in archive page
- Best way to structure article and issue relationship for CPT
- Custom Post Type used for FAQs Accordion
- category_name not working in WP_Query
- How can I set up the URL for a category archive for a custom post type?
- Custom Post Type order Title ASC
- show only one category posts in admin
- Is it possible for post and custom post type to share a category base slug?
- Category display using conditions
- Separate archive template to show posts and CPT by same category/taxonomy
- Add taxonomy or category slug to custom post types URL
- How to determ a custom post type url?
- Update permalinks when new category added to custom post type taxonomy
- Create a wordpress test-system as a clone from productive system
- Get posts from a custom post type by child categories of a parent category
- Linking to the most recent post in a Custom Post Type
- Custom Post Type Archive Page Filtering
- Getting posts under the custom post type ui category
- How can I auto-assign a CPT post to category in a custom taxonomy when published?
- wp_get_post_terms on custom post type with custom taxonomies returning an empty array
- get_posts() with custom post type does not work outside page.php
- Posts from all the categories are being displayed instead of particular category
- Get parent categories of custom post type
- Custom Taxonomies not appearing in Admin
- How to query_post custom posts within default taxonomy?
- Conditional Statement custom post type category
- Show custom post type filtered by category
- Custom Post Type With Categories
- Display posts from Custom Post Type in category page on front-end
- Custom Post Type Set Comments ON by default without show METABOX
- Get term name and term parent into custom post type permalink
- Custom Post Type Taxonomy Filters
- Categories sorting
- How can I make my custom posts appear in their assigned category url?
- How to call in Custom Post-Type Categories?
- Allow user to set custom order to a list of custom taxonomies?
- get_category_parents for custom post type taxonomy
- How do I do this with WordPress? Taxonomies?
- Separate custom categories from default category
- forming WP_Query for posts of all post types but from specific categories
- wp_list_categories() – current-cat class also inside posts?
- Is using taxonomies the way to go here or would custom post types be better?
- Showing posts from different categories and from custom post type
- Custom post type getting wrong categories and tags
- Using default WP menu functionality to link to custom post-type listing?
- Can taxonomies of custom post types be used with category actions?
- Custom Taxonomy back-end customizations
- Show a Category X’s custom post type on Category X archive page?
- Taxonomy custom post type URL