# 八、wordpress搜索页调用标签 **1、自定义wordpress模板主题搜索框制作** ```html wordpress自定义全站搜索框
wordpress自定义搜索指定栏目分类 (value="" 为指定分类的id) wordpress自定义不搜索该分类下的文章 (value="" 为指定分类的id) ``` **2、wordpress搜索页search.php制作** ```php 获取搜索词 echo get_search_query()?> 搜索列表页 方法一 直接使用分类列表页循环方式即可 搜索列表页 方法二 if(have_posts()){ while(have_posts() ){ the_post(); ?>the_excerpt(); ?>