LOADING STUFF...

帝国CMS相关信息模板如何调用其他字段

帝国CMS相关信息模板默认只支持如下变量:

标题: [!--title--]
标题alt:[!--oldtitle--]
标题链接: [!--titleurl--]
发布时间: [!--newstime--]
标题图片: [!--titlepic--]

如果还想增加调用其他字段该如何实现了,我们以[!–smalltext–]简介字段为例,方法如下:

1、打开e/class/functions.php
2、找到:

$key_sql=$empire->query("select id,newstime,title,isurl,titleurl,classid,titlepic from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$add." order by newstime desc limit $link_num");

修改成:

$key_sql=$empire->query("select * from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$add." order by newstime desc limit $link_num");

3、找到:

$temptext=str_replace("[!--newstime--]",$r[newstime],$temptext);

在下面加一个

$temptext=str_replace("[!--smalltext--]",$r[smalltext],$temptext);

4、在相关链接模板即可直接调用了

[!--smalltext--]

本文收集于互联网,由 本站 整理编辑,不代表 本站 对观点赞同或支持。如果有侵权、不妥之处,请联系我们删除。敬请谅解!

© 版权声明

相关文章