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