不包含子栏目内容的方法:
1{kuicms:rs top="10" table="kui_content" where="islock=1 and classid=栏目ID" order="ontop desc,ordnum desc,id desc"}
2{rs:eof}暂无资料{/rs:eof}
3<a href="{$rs[link]}" title="{$rs[title]}">{cutstr($rs[title],80,1)}</a>
4{/kuicms:rs}
包含子栏目内容的方法:
1{php $sonid=get_sonid_all(栏目ID)}
2{sdcms:rs top="10" table="sd_content" where="islock=1 and classid in($sonid)" order="ontop desc,ordnum desc,id desc"}
3{rs:eof}暂无资料{/rs:eof}
4<a href="{$rs[link]}" title="{$rs[title]}">{cutstr($rs[title],80,1)}</a>
5{/sdcms:rs}
说明:先定义$sonid变量获取栏目的所有子栏目集合,然后在where参数中直接调用$sonid即可
调用内容所属栏目的方法(带超链接)
1<a href="{cateurl($rs[classid])}">{get_catename($rs[classid])}</a>