$categories = get_the_category();
  foreach($categories as $key => $category) {
    $url = get_term_link((int)$category->term_id,'category');
    $categories[$key] =
      "{$category->name} " .
      "{$category->category_description} ";
  }
  echo "\n" . implode("\n",$categories) . "\n
";
?>
Category sayfası dışında(örn single.php) böyle kullanabilirsiniz
Kaynak
 
  
