phprockers-logo

Get Category Name from Post ID in WordPress

Get the category name by using the post id in wordpress,
Step 1: First we have to get the post id
global $posts;
$post_id = $posts->ID;

Step 2: After the get the post id, then we get the category is very simple.
$category = get_the_category($postID);

$category_name = $category->cat_name

0 comments:

Post a Comment