mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-19 05:51:55 +01:00
git-svn-id: http://svn.automattic.com/wordpress/trunk@8999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
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>
|