帝国cms调用父栏目(频道栏目)下的子栏目的全部文章:
<?php
$str_sonclass = $class_r[128][sonclass];//此128数字就代表父栏目(频道栏目)的id
if($str_sonclass){
$catid = str_replace('|',',',trim($str_sonclass,'|'));
}
?>
[e:loop={"SELECT * from {$dbtbpre}ecms_news WHERE classid in({$catid}) order by newstime DESC limit 15",0,24,0}]
<li><a href="<?=$bqr[titleurl]?>" target="_blank" title="<?=$bqr[title]?>"><?=$bqr[title]?></a></li>
[/e:loop]