Answers for "get the post category name wordpress with post id"

PHP
0

how to get category from post id

get_the_category($post->ID)
Posted by: Guest on January-04-2021
0

wordpress single post get category name

$category = get_the_category();
$firstCategory = $category[0]->cat_name;
Posted by: Guest on December-20-2021

Code answers related to "get the post category name wordpress with post id"

Browse Popular Code Answers by Language