欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

織夢dedecms在搜索結果頁按欄目分類顯示搜索數據

  發(fā)布時間:2020-11-03 11:20:08   作者:佚名   我要評論
這篇文章主要為大家詳細介紹了織夢dedecms在搜索結果頁按欄目分類顯示搜索數據,具有一定的參考價值,感興趣的小伙伴們可以參考一下,有需要的朋友可以收藏方便以后借鑒。

搜索結果示范

實現教程

1、搜索框代碼里使用name="q"作為搜索框屬性,例如

 2、打開 /include/taglib/arclist.lib.php 找到,大概在188行

$innertext = trim($innertext);

在它下面加入

preg_match("/~([A-Za-z0-9_]+)~/s", $keyword, $conditions);
if(isset($_REQUEST['q']) && $keyword = '~q~')
{
preg_match("/~([A-Za-z0-9_]+)~/s", $keyword, $conditions);
$keyword = addslashes(trim($_REQUEST['q']));
}

繼續(xù)找到

$taghash = md5(serialize($ctag).$typeid);

改成

$taghash = md5(serialize($ctag).$typeid.$keyword);

3、搜索結果模板 search.htm 里調用標簽寫法

{dede:channelartlist row=5 typeid=top}
<h2>{dede:field.typename/}</h2>
<div>
<ul>
{dede:arclist row='20' titlelen='250' keyword='~q~'}
<li>
<a href="[field:arcurl/]" target="_blank">[field:title/]</a>
</li>
{/dede:arclist}
</ul>
</div>
{/dede:channelartlist}

完成

到此這篇關于織夢dedecms在搜索結果頁按欄目分類顯示搜索數據的文章就介紹到這了,更多相關dede搜索頁有欄目分類選項內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持腳本之家!

相關文章

最新評論