get current category ID php

you can use get_queried_object()

$category = get_queried_object();
echo $category->term_id;

Leave a Comment