我把搜索小部件放在我的网站上(默认的Wordpress 3.0.4)。默认输出为
<form action="http://alessandro.host/" id="searchform" method="get" role="search">
<div><label for="s" class="screen-reader-text">Search for:</label>
<input type="text" id="s" name="s" value="">
<input type="submit" value="Search" id="searchsubmit">
</div>
</form>
现在我想覆盖它以使输出像这样
<form action="http://alessandro.host/" id="searchform" method="get" role="search">
<div>
<input type="text" id="s" name="s" value="Search">
</div>
</form>
请注意,没有label
和send button
我怎么能成功?