列表页获取当前分类目录相关信息
<?php
$cat = get_query_var('cat'); //获取当前分类目录id
$category = get_category($cat); //获取当前分类目录信息对象数组
echo $catetory->cat_name; //输出分类目录标题
/*
cat_ID / term_id - 分类ID
cat_name / name- 分类名
category_nicename / slug - 别名
category_description / description - 分类描述
category_parent / parent- 父分类ID
category_count / count - 文章数量
*/
?>
文章页获取当前所属分类目录相关信息
<?php
$category = get_the_category();
echo $category[0]->cat_name;
/*
cat_ID / term_id - 分类ID
cat_name / name- 分类名
category_nicename / slug - 别名
category_description / description - 分类描述
category_parent / parent- 父分类ID
category_count / count - 文章数量
*/
?>
当做一次笔记吧。