get current category ID php

I’m trying to get category ID of the current archive displayed.

I tried:

Read More
// category (can be a parent category)
$current_cat_ID = get_query_var('cat');
//
print_r ($current_cat_ID);

It doesn’t print anything…

Related posts

Leave a Reply

3 comments

  1. If you want to fecth in category page,you can get id of current category by:

    $category = get_category( get_query_var( 'cat' ) );
    $cat_id = $category->cat_ID;
    

    If you want to get category id of any particular category on any page, you can try using below code:

    $category_id = get_cat_ID('Category Name');