記事(投稿)のカテゴリIDを取得する

WordPressで記事(投稿)のカテゴリIDを取得する

$category = get_the_category();
$cat_id   = $category[0]->cat_ID;
echo $cat_id;