Many people want to know about post category and know more information current category. Some time we need to use the first category of wordpress post. As we know we can define the multiple category to single article. So if we want retrive the wordpress category then we will get the result in simple php array format. Using that array we can easily extract the first category of post.
if we want first category than, we will get result in php array format. Using that array we can easily get first category name or id from wordpress post.
How to get first category name or id from wordpress post
In this post I will show how we can achieve that. Using following code we can get the first category ID.
< ?php $category = get_the_category(); $currentcat = $category[0]->cat_ID; ?>
Using following code we can extract the first category name from the wordpress post.
< ?php $category = get_the_category(); $currentcat = $category[0]->cat_name; ?>
Above code we can use only in the loop but using the following code we can extract the category
outside the loop also
<!--?<span class="hiddenSpellError" pre="" data-mce-bogus="1"-->php global $post; $categories = get_the_category($post->ID); $currentcat = $category[0]->cat_ID; ?></pre> <pre>
same like that.. cat name
<!--?<span class="hiddenSpellError" pre="" data-mce-bogus="1"-->php global $post; $categories = get_the_category($post->ID); $currentcat = $category[0]->cat_name; ?> </pre> <pre>