$web.type 是网站所有的栏目的属性数组,可使用的参数:($data_ary.all_type 变量也是同样的内容)
<{$web.type.栏目ID.id}>
<{$web.type.栏目ID.parent_id}>
<{$web.type.栏目ID.order_mark}>
<{$web.type.栏目ID.channel_id}>
<{$web.type.栏目ID.total_num}>
<{$web.type.栏目ID.num_per_page}>
<{$web.type.栏目ID.title}>
<{$web.type.栏目ID.dir}>
<{$web.type.栏目ID.tpl_index}>
<{$web.type.栏目ID.tpl_list}>
<{$web.type.栏目ID.tpl_detail}>
<{$web.type.栏目ID.tpl_single}>
<{$web.type.栏目ID.desc}>
<{$web.type.栏目ID.keyword}>
<{$web.type.栏目ID.property}>
<{$web.type.栏目ID.url}>
<{$web.type.栏目ID.title_prefix}>
循环$web.type数组,让它自动显示导航条连接的范例:
<A HREF="/" target=_self>首页</A>
<{foreach name=all_type item=single_type from=$web.type}>
| <A HREF="<{$single_type.url}>" target=_self><{$single_type.title}></A>
<{/foreach}>foreach 模板函数的使用方法和详细语法,请参考smarty模板手册
首页显示该栏目共多少篇文章:
共<{$web.type[$single_type.id].total_num}>篇文章
列表页码显示文章所属的栏目:
[<A HREF="<{$web.type[$item_info.type_id].url}>"><{$web.type[$item_info.type_id].title}></A>]
显示某栏目的下级栏目:
<{foreach name=sub_type item=item_info from=$web.type}>
<{if $item_info.parent_id == $data_ary.type_info.id}>
·<A HREF="<{$item_info.url}>"><{$item_info.title}></A> <BR>
<{/if}>
<{/foreach}>