wordpress增加bootstarp自适应搜索功能的方法很简单,方法:
1,新建一个searchform.php的文件,文件里面是下面内容:
<form role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
<div class="form-group">
<label class="screen-reader-text" for="s"></label>
<input type="text" class="form-control" value="<?php the_search_query(); ?>" name="s" id="s" />
</div>
<button type="submit" class="btn btn-default" id="searchsubmit" value="搜索" >搜索内容</button>
</form>
上面的样式,我进行了修改,基本弄成了自适应的状态,是在bootstrap框架下的自适应。
文件下载地址:下载文件 密码:2uy9
2,在你要添加搜索的边栏或其他为止添加代码:
<?php get_search_form(); ?>