How to get the category name of a category given Post ID?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Praveen
You can use get_the_category to get category name from post ID
echo ''. get_the_category( $id )[0]->name .'';