帝国CMS调用栏目别名的两种方法有利于优化!
第一种:在最终栏目调用
<?=$class_r[$GLOBALS[navclassid]][bname]?>
第二种:万能的,哪里都行,应为是直接查询数据库输出的!
<?php $cr=$empire->fetch1("select bname from phome_enewsclass where classid='".$GLOBALS[navclassid]."' limit 1"); echo $cr['bname']; ?>
注意:封面页面无法使用,实用与列表页面子栏目用