rusica.net

カテゴリID(term_id)からカテゴリ名またはスラッグを取得

関数の引数は「カテゴリID」と「取得したい値の種類( ‘name’ または ‘slug’ )」

function get_category_name_by_id($cat_ID,$type) {
 $cat_ID = (int) $cat_ID;
 $category = &get_category($cat_ID);
 if($type == 'name'){
  return $category->cat_name;
 } elseif($type == 'slug') {
  return $category->slug;
 }
}