Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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
?>
Source by www.techdilate.com #
 
PREVIOUS NEXT
Tagged: #wp #category #id
ADD COMMENT
Topic
Name
9+9 =