我看了很多 ,从5.1到5.6 几乎很少人用到按栏目分类搜索功能这个功能其实我也是今天才看到,DEDECMS本身默认就支持按栏目分类 自动生成默认自显示到二级分类。
测试代码如下:
-
<form action="{dede:field name='phpurl'/}/search.php" name="formsearch">
-
<div class="form">
-
<h4>搜索</h4>
-
<input type="hidden" name="kwtype" value="0" />
-
<input type="hidden" name="searchtype" value="titlekeyword" />
-
<input name="keyword" type="text" class="search-keyword" id="search-keyword" />
-
<select name="typeid" class="search-option" id="typeid">
-
<option value='0' selected='1'>全部栏目</option>
-
{dede:channelartlist typeid='top' }
-
{dede:type} <option value='[field:id/]'>[field:typename/]</option>{/dede:type}
-
{dede:channel type='son' noself='yes'}
-
<option value='[field:id/]'>-[field:typename/]</option>
-
{/dede:channel}
-
{/dede:channelartlist}
-
</select><button type="submit" class="search-submit">搜索</button>
-
</div>
-
</form>