帝國CMS動態頁面默認是不支持標簽語法的,所以在制作搜索、留言等頁面的時候需要改動下才行。
帝國cms二次開發教程
找到 /e/search/result/index.php 文件
在下面找到
require("../../class/q_functions.php");
替換為
require('../../class/functions.php'); require('../../class/t_functions.php');
繼續找到 $listtemp=$tempr[temptext];
在上面增加
$tempr[temptext]=DtNewsBq('list'.$tempid,$tempr[temptext],0);
修改完成 現在試試 搜索頁模板里可以使用標簽了php代碼了