Skip to content
Advertisement

Get Category name from Post ID

Is it possible to get the category name of a category given the Post ID, the following code works to get the Category Id, but how can I get the name?

JavaScript

Thank!

Advertisement

Answer

here you go get_the_category( $post->ID ); will return the array of categories of that post you need to loop through the array

JavaScript

get_the_category

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement