Answers for "get category name by post id single category"

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 category name by post id single category"

Browse Popular Code Answers by Language