您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程

帝国CMS7.2搜索模板怎么支持动态标签调用的方法

颖真2023-02-05 22:48:00帝国CMS教程已有人查阅

导读不知道为啥,帝国CMS搜索模板始终不支持动态标签调用,这很不方便,即便是升级到7.2,仍然不支持。这篇文章成功实现了7.2版的搜索模板动态标签

不知道为啥,帝国CMS搜索模板始终不支持动态标签调用,这很不方便,即便是升级到7.2,仍然不支持。这篇文章成功实现了7.2版的搜索模板动态标签
教程开始
打开 /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);
就可以了!

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

相关标签