帝国CMS评论调用自定义字段的方法

时间:2024年03月06日

/

来源:网络

/

编辑:佚名

首页我们在后台 管理评论 添加一个自定义字段,比如 [!–kwpf–]字段,那么怎么在前台页面调用到帝国评论的自定义字段了。
下面就是调用方法:
修改/e/class/t_functions.php
1、搜索:function sys_ShowPlInfo($line,$tempid,$classid=0,$id=0,$isgood=0,$enews=0)。 源文件未修改的话大概在2016行
找到:
$sql=$empire->query("select plid,userid,username,saytime,id,classid,zcnum,fdnum,saytext from {$dbtbpre}enewspl_".$public_r['pldeftb']." where checked=0".$a." order by ".$order." limit ".$line);
全选代码复制
改成
$sql=$empire->query("select * from {$dbtbpre}enewspl_".$public_r['pldeftb']." where checked=0".$a." order by ".$order." limit ".$line);
全选代码复制
或者改成
$sql=$empire->query("select plid,userid,username,saytime,id,classid,zcnum,fdnum,saytext,kwpf from {$dbtbpre}enewspl_".$public_r['pldeftb']." where checked=0".$a." order by ".$order." limit ".$line);
全选代码复制
2、搜索:function ReplaceShowPlVars($no,$listtemp,$r,$formatdate,$subnews=0)
找到:$listtemp=str_replace(“[!–fdnum–]”,$r[‘fdnum’],$listtemp);
在其下面增加一行:
$listtemp=str_replace("[!--kwpf--]",$r['kwpf'],$listtemp)
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。