我只想为其他人添加两件小事。。。。
如果您的模板支持,您可以添加:
<?php include (TEMPLATEPATH . \'/searchform.php\'); ?>
2。添加以下代码将在搜索框中放置文本。(如“编写搜索并按Enter键”)
<form method="get" id="searchform" action="<?php bloginfo(\'home\'); ?>/">
<div><input type="text" size="put_a_size_here" name="s" id="s" value="Write your search and hit Enter" onfocus="if(this.value==this.defaultValue)this.value=\'\';" onblur="if(this.value==\'\')this.value=this.defaultValue;"/>
<input type="submit" id="searchsubmit" value="Search" class="btn" />
</div>
</form>
最后,结合这两个建议,将第二部分的代码保存为searchform。php在您的模板文件夹中,您始终可以使用方法1调用它。