帝国cms留言页面以及搜索页面是动态的页面,不支持标签调用,所以在查看的时候,会发现标签代码都显示出来了,要让动态页面支持标签调用,应该怎么做呢?下面是青青模板网整理的的有关帝国cms 动态留言页,搜索页支持标签调用方法。
留言模板支持动态标签调用的方法
一、查找e/class/functions.php这个文件里面的这段代码:
$gbtemp=str_replace("<!--empire.listtemp.footer-->",$listtemp_r[2],$gbtemp);
增加下面两句代码:
$gbtemp=DoRepEcmsLoopBq($gbtemp); $gbtemp=RepBq($gbtemp);
二、再打开e/data/template/gbooktemp.txt文件
在头部require("../../class/connect.php");这串代码后面添加下面两串代码:
require("../../class/t_functions.php"); require("../../data/dbcache/class.php");
最后更新一下,标签就可以生效了!
搜索模板支持动态标签调用的方法
打开 /e/search/result/index.php 文件,找到
require("../../class/connect.php");
require("../../class/db_sql.php");
require("../../data/dbcache/class.php");
require("../../class/q_functions.php");
require "../".LoadLang("pub/fun.php");
修改为
require('../../class/connect.php'); require('../../class/db_sql.php'); require('../../class/functions.php'); require('../../class/t_functions.php'); require('../../data/dbcache/class.php'); require "../".LoadLang("pub/fun.php");
找到
//替换公共模板变量
$listtemp=$tempr[temptext];
在其上边添加以下代码
//页面支持标签 $tempr[temptext]=DtNewsBq('list'.$tempid,$tempr[temptext],0);
以上就是关于帝国cms常见问题中"帝国cms留言页,搜索页支持标签调用方法"的全部内容,如果有遇到帝国cms常见问题其他问题的,可以在评论留言,或者加微信咨询。
本文链接:https://my.lmcjl.com/post/15876.html
4 评论