Answers for "get term id of a category"

PHP
0

get term id

get_queried_object()->term_id;
Posted by: Guest on June-29-2020
-2

wp get category by id

<?php
$category_id = 21; //use your own category id
$category = get_category( $category_id );
echo $category->name;
echo $category->cat_ID;
//print_r($category);
//to get all the properties of the $category
?>
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language