首页 > CMS > 织梦DEDE > 正文

织梦搜索指定多个栏目的文档

2024-07-12 08:32:46
字体:
来源:转载
供稿:网友

在搜索框表单里加个typeid提交过去

1 2 3 <form name="formsearch" action="/plus/search.php"> <input type="hidden" name="typeid" value="1,2,3"> </form>

在/plus/search.php 找到

$typeid = (isset($typeid) && is_numeric($typeid)) ? $typeid : 0;

注销或者删除它

继续找到

$typeid = intval($typeid);

注销或者删除它

最后打开 /include/arc.searchview.class.php 找到

$ksqls[] = " typeid IN (".GetSonIds($this->TypeID).") ";

改成

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 //指定了多个栏目时 if( preg_match('#,#', $this->TypeID) ) {     $typeids = explode(',', $this->TypeID);     foreach($typeids as $ttid) {         $typeidss[] = GetSonIds($ttid);     }     $typeidStr = join(',', $typeidss);     $typeidss = explode(',', $typeidStr);     $typeidssok = array_unique($typeidss);     $typeid = join(',', $typeidssok);     $ksqls[] = " arc.typeid IN ($typeid) "; } else {     $ksqls[] = " arc.typeid IN (".GetSonIds($this->TypeID).") "; }

完成


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表