搜索结果示范 实现教程 1、搜索框代码里使用name="q"作为搜索框属性,例如 2、打开 /include/taglib/arclist.lib.PHP 找到,大概在188行 $inne
搜索结果示范
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']));
}
继续找到
$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搜索页有栏目分类选项内容请搜索编程网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持编程网!
--结束END--
本文标题: 织梦dedecms在搜索结果页按栏目分类显示搜索数据
本文链接: https://lsjlt.com/news/99178.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-27
2023-10-27
2023-10-26
2023-10-25
2023-10-21
2023-10-21
2023-10-18
2023-10-12
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0