Steps to modify the column alias called by Empire CMS

silencement
Release: 2019-12-02 15:23:27
forward
2164 people have browsed it

Steps to modify the column alias called by Empire CMS

Please pay attention to the following modification method

After modifying the column alias, use [!--bname--] to call

Open e/class/t_functions .php
Search and locate the
column navigation tag with template
Modify 1

The code is as follows:

//替换变量 $bclassname=$class_r[$classid][classname]; $bname=$class_r[$classid][bname]; $br[classid]=$classid; $bclassurl=sys_ReturnBqClassname($br,9); $listtemp=str_replace("[!--bclassname--]",$bclassname,$listtemp); $listtemp=str_replace("[!--bname--]",$bname,$listtemp); $listtemp=str_replace("[!--bclassurl--]",$bclassurl,$listtemp);
Copy after login

Recommended to study "Empire cms tutorial

Modify 2

The code is as follows:

$sql=$empire->query("select classid,classname,bname,islast,sonclass,tbname,intro,classimg from {$dbtbpre}enewsclass where bclassid='$classid' and showclass=0 order by myorder,classid".$limit);
Copy after login

Modify 3

The code is as follows:

//栏目名称 $listtemp=str_replace("[!--classname--]",$r[classname],$listtemp); //栏目别名 $listtemp=str_replace("[!--bname--]",$r[bname],$listtemp); //栏目id $listtemp=str_replace("[!--classid--]",$r[classid],$listtemp);
Copy after login

The above is the detailed content of Steps to modify the column alias called by Empire CMS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:www.word666.com/cms
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!