帝国CMS封面列表(内容)和内容页调用栏目别名方法汇总

0人参与 |分类: 程序学习|时间:2017-12-19 21:12:20

场景一:帝国CMS内容模板内

第一种:在最终栏目调用

<?=$class_r[$GLOBALS[navclassid]][bname]?>

第二种:万能的,哪里都行,应为是直接查询数据库输出的!

<?php 
$cr=$empire->fetch1("select bname from phome_enewsclass where 
classid='".$GLOBALS[navclassid]."' limit 1"); 
echo $cr['bname']; 
?>

 场景二:列表内容模板(list.var)

  1. $_nowclass=$empire->fetch1("select * from {$dbtbpre}enewsclass where classid='$r[classid]'");
  2. $listtemp='栏目别名:'.$_nowclass[bname].'';

Tips:使用$r变量需开启“使用程序代码”