首页 > CMS > 织梦DEDE > 正文

dede实现分栏目搜索内容修改教程

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

共有两种方式,通过测试第一种比较的好用。如果只是单独的调用一个栏目那么用第二种方法比较的好。

方法1:

  1. //统计列表里的记录 
  2.  
  3. $cquery = "Select * From `archives` arc where arc.typeid not in (1,2,3...) and {$this->AddSql}"
  4. //Vevb.com 
  5. //搜索 
  6.         $query = "Select arc.*,act.typedir,act.typename,act.isdefault,act.defaultname,act.namerule, 
  7.         act.namerule2,act.ispart,act.moresite,act.siteurl,act.sitepath 
  8.         from `archives` arc left join `arctype` act on arc.typeid=act.id 
  9.         where  act.id not in (4,5,,6....) and {$this->AddSql} $ordersql limit $limitstart,$row"; 

把sql语句换成我这两句,括号里面的是你不搜索栏目的id

方法2:测试可以 指定频道搜索

把它放在搜索form里面即可

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