SyntaxFix
Write A Post
Hire A Developer
Questions
here you go get_the_category( $post->ID ); will return the array of categories of that post you need to loop through the array
get_the_category( $post->ID );
$category_detail=get_the_category('4');//$post->ID foreach($category_detail as $cd){ echo $cd->cat_name; }
get_the_category