wordpress笔记:获得子分类信息
在开发“资讯”栏目界面的时候,需要把子分类名称给罗列出来。那么晚,可以在主题的functions.php加入以下代码
// 获得子分类
function getTearmChild($id, $taxonomy = 'category')
{
$childIdsArr = get_term_children($id, $taxonomy);
$childs = array();
foreach($childIdsArr as $i)
{
$childs[] = get_category($i);
}
return $childs;
}
回复
要发表评论,您必须先登录。