调用某个栏目最新内容的方法

日期:2017-03-24 人气:2851

不包含子栏目内容的方法:

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}
<a href="{$rs[link]}" title="{$rs[title]}">{cutstr($rs[title],80,1)}</a>
{/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}
<a href="{$rs[link]}" title="{$rs[title]}">{cutstr($rs[title],80,1)}</a>
{/cms:rs}

说明:先定义$sonid变量获取栏目的所有子栏目集合,然后在where参数中直接调用$sonid即可

 

调用内容所属栏目的方法(带超链接)

1
<a href="{cateurl($rs[classid])}">{get_catename($rs[classid])}</a>


0有帮助,赞一个!
下一篇:没有了
帮助