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

搜索框表单里加个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).") ";

}

 

完成

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/1a3f319179b8e0b7d9ea1416bda0d09b.html