f15c863ba1
git-svn-id: https://develop.svn.wordpress.org/trunk@8999 602fd350-edb4-49c9-b593-d223f7449a82
13 lines
358 B
PHP
13 lines
358 B
PHP
<?php
|
|
/**
|
|
* @package WordPress
|
|
* @subpackage Default_Theme
|
|
*/
|
|
?>
|
|
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
|
|
<label class="hidden" for="s"><?php _e('Search for:'); ?></label>
|
|
<div><input type="text" value="<?php the_search_query(); ?>" name="s" id="s" />
|
|
<input type="submit" id="searchsubmit" value="Search" />
|
|
</div>
|
|
</form>
|