dedecms调用二级、三级以及调用栏目所有子栏目
<!--频道分类具体内容开始--> <div class="channel_sort"> {dede:channelartlist cacheid=‘channelsonlist‘} <h3><a href="{dede:field name=‘typeurl‘/}" >{dede:field name=‘typename‘/}</a></h3> <ul> {dede:channel type=‘son‘ row=‘10‘ noself=‘yes‘} <li><a href=‘[field:typeurl/]‘ [field:rel/]><span>[field:typename/]</span></a></li>{/dede:channel} </ul> {/dede:channelartlist} </div>
【Channel 标记】
功能说明:用于获取栏目列表
适用范围:封面模板、列表模板、文档模板
(1)基本语法
{dede:channel row=‘‘ type=‘‘}
自定义样式模板(InnerText)
{/dede:channel}
(2)属性
[1] row=‘数字‘ 表示获取记录的条数(通常在某级栏目太多的时候使用,默认是 8)
[2] type = top,sun/son,self
type=‘top‘ 表示顶级栏目
type=‘son‘ 或 ‘sun‘ 表示下级栏目
type=‘self‘ 表示同级栏目
其中后两个属性必须在列表模板中使用。
时间: 2024-10-03 15:01:29