DEDE实现搜索只搜指定多栏目下的文章
网站建设 2022-07-27 09:12www.1681989.com免费网站
共有两种方式,通过测试第一种比较的好用。如果只是单独的调用一个栏目那么用第二种方法比较的好。 方法1 //统计列表里的记录 $cquery = Select From `archives` arc where arc.typeid not […]
共有两种方式,通过测试第一种比较的好用。如果只是单独的调用一个栏目那么用第二种方法比较的好。
方法1
//统计列表里的记录
$cquery = "Select From `archives` arc where arc.typeid not (1,2,3...) and {$this->AddSql}";
//搜索
$query = "Select arc.,act.typedir,act.typename,act.isdefault,act.defaultname,act.namerule,
act.namerule2,act.ispart,act.moresite,act.siteurl,act.sitepath
from `archives` arc left jo `arctype` act on arc.typeid=act.id
where act.id not (4,5,,6....) and {$this->AddSql} $ordersql limit $limitstart,$row";
把sql语句换成我这两句,括号里面的是你不搜索栏目的id
方法2
<put type="hidden" name="typeid" value="特定栏目id"> 把它放在搜索form里面即可
共有两种方式,通过测试第一种比较的好用。如果只是单独的调用一个栏目那么用第二种方法比较的好。
方法1
//统计列表里的记录
$cquery = "Select From `archives` arc where arc.typeid not (1,2,3...) and {$this->AddSql}";
//搜索
把sql语句换成我这两句,括号里面的是你不搜索栏目的id
方法2
<put type="hidden" name="typeid" value="特定栏目id"> 把它放在搜索form里面即可