与get_cat_ID()函数相反,WordPress函数get_cat_name是根据分类ID获取分类名称。
1 | get_cat_name( int $cat_id ) |
函数参数
$cat_id
整数
分类的ID
函数使用示例
1 | echo get_cat_name(6); |
扩展阅读
get_cat_name()函数位于:wp-includes/category.php
相关函数:
- get_cat_ID()
- get_term_by()
- get_category()
- get_term()
- get_category_children()
- get_category_by_slug()
- get_category_by_path()
原文链接:https://xiaohost.com/2285.html,转载请注明出处。