1、修改默認的搜索標簽
地址改成:e/sch/index.php,post改成get,刪除select
<div class="search">
<form action="[!--news.url--]e/sch/index.php" method="get" name="searchform" id="searchform">
<input name="keyboard" id="keyboard" class="input_text" value="請輸入關鍵字詞" style="color: rgb(153, 153, 153);" onfocus="if(value=='請輸入關鍵字詞'){this.style.color='#000';value=''}" onblur="if(value==''){this.style.color='#999';value='請輸入關鍵字詞'}" type="text">
<input name="show" value="title" type="hidden">
<input name="tempid" value="1" type="hidden">
<input name="Submit" class="input_submit" value="搜索" type="submit">
</form>
</div>
2、開啟全站搜索
3、導入數據
4、修改模板-公共模板-全站搜索模板(第二個)
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>[!--pagetitle--]_<?=$public_r[sitename]?></title>
<meta name="keywords" content="[!--pagekey--]" />
<meta name="description" content="[!--pagedes--]" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="[!--news.url--]skin/html/css/base.css" rel="stylesheet">
<link href="[!--news.url--]skin/html/css/m.css" rel="stylesheet">
<script src="[!--news.url--]skin/html/js/jquery-3.6.0.min.js" ></script>
<script src="[!--news.url--]skin/html/js/comm.js"></script>
</head>
<body>
[!--temp.header--]
<div class="box">
<div class="blogs_search">
<div class="weizhi">您現在的位置是:<a href="[!--news.url--]">首頁</a> > 搜索結果</div>
<div class="xt_search">系統搜索到以下文章符合<strong>[!--keyboard--]</strong>的查詢結果</div>
<ul>
[!--empirenews.listtemp--]
<li><h2><a href="[!--titleurl--]" target="_blank">[!--no.num--]. [!--title--]</a></h2>
<p>[!--smalltext--]</p>
<span class="color_green">[!--titleurl--] - [!--newstime--]</span></li>
[!--empirenews.listtemp--]
</ul>
<div class="epages">[!--listpage--]</div>
</div>
<aside class="rbox">
[!--temp.tuijian(all)--]
</aside>
<div class="clear"></div>
</div>
[!--temp.footer--]
</body>
</html>
5、修改文件,讓動態頁面支持標簽調用
找到/e/class/functions.php 的大概第4768行或 搜索“ReSchAlltemp()” 這個函數,
在$pagetitle=$fun_r['SearchAllNav']; 下面添加以下代碼:
//----支持標簽調用
$pr['schalltemp']=DtNewsBq('lists'.$tempid,$pr['schalltemp'],0);
如下圖