WordPress – get category details by category id
To get all the details of the category by the category id.
This function return category object.
<?php $category_id = 35; //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 ?>
Wowza, problem solved like it never haendppe.