To the the Category ID on Current active page in WordPress use the following code.
<?php
$categories = get_the_category();
$category_id = $categories[0]->cat_ID;
echo category_id;
?>
Your Category ID will be present in category_id.
No comments:
Post a Comment