首页>技术知识>织梦CMS 织梦CMS在搜索结果页按栏目分块显示数据(无分页)
DEDECMS教程
2021-08-30
搜索结果示范 实现教程1、搜索框代码里使用name="q"作为搜索框属性,例如 2、打开 /include/taglib/arclist.lib.php 找到,大概在188行 $innertext = trim($innertext);在它下

搜索结果示范

<a href=织梦CMS" src="https://im.25qi.com/d/file/zmcms/202108301-201029104UL50.png" />

实现教程

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}

完成

显示全部内容...