織夢(mèng)默認(rèn)代碼有這樣一個(gè)代碼,方便快捷解決這樣的難題。只需要在模板搜索代碼中加入 “”<input type='hidden' name='typeid' value="欄目ID號(hào)">“” 即可。如果只搜索單一的欄目,可以直接在form中添加即可,代碼如下:
<input type="text" name="q" value="請(qǐng)輸入關(guān)鍵詞" onblur="if (this.value ==''){this.value=this.defaultValue}" onclick="if(this.value=='請(qǐng)輸入關(guān)鍵詞')this.value=''">
</form>
方法2:
首先我們找到/include/ 文件夾里面的arc.searchview.class.php,大約在300行和470行左右有個(gè)sql語(yǔ)句,在后面加上條件一個(gè)判斷就可以了
//搜索
$query = "Select arc.*,act.typedir,act.typename,act.isdefault,act.defaultname,act.namerule,
act.namerule2,act.ispart,act.moresite,act.siteurl,act.sitepath
from `dede_archives` arc left join `dede_arctype` act on arc.typeid=act.id
where act.id not in (4,5,,6....) and {$this->AddSql} $ordersql limit $limitstart,$row";
把sql語(yǔ)句換成這兩句,括號(hào)里面的是你不搜索欄目的id 。或者將not in改為in,括號(hào)里面是你要搜索欄目的id