电话
13363039260
显示该类别下所有的子类别,当父类别的ID为0时显示该频道所有类别,以循环输出。
参数说明:
channel_name:当前频道的名称,string类型
parent_id:父类别的ID,0为所有类别,int类型
get_category_list(channel_name, parent_id)
<!--示例一:显示频道名称为news的所有类别--> <%set DataTable dt=get_category_list("news", 0)%> <%foreach(DataRow dr in dt.Rows)%> 类别名称:{dr[title]} <%/foreach%> <!--示例二:显示频道名称为news,父类别ID为5的所有子类别--> <%set DataTable dt=get_category_list("news", 5)%> <%foreach(DataRow dr in dt.Rows)%> 类别名称:{dr[title]} <%/foreach%>