Get category id from post id of a custom post type

wp_get_post_categories can only get POST categories not a custom post’s categories, try this instead:

$category = get_the_terms( $post->ID, 'custom-taxonomy-here' );     
foreach ( $category as $cat){
   echo $cat->name;
}

Check this link

Leave a Comment