2010-03-30 00:03:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The Search Form
|
|
|
|
*
|
|
|
|
* Optional file that allows displaying a custom search form
|
|
|
|
* when the get_search_form() template tag is used.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty Ten
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
2010-02-08 21:28:13 +01:00
|
|
|
<form id="searchform" name="searchform" method="get" action="<?php echo home_url(); ?>">
|
2010-02-07 17:16:26 +01:00
|
|
|
<div>
|
2010-02-14 02:00:22 +01:00
|
|
|
<label for="s"><?php _e( 'Search', 'twentyten' ); ?></label>
|
2010-02-07 17:16:26 +01:00
|
|
|
<input type="text" id="s" name="s" />
|
2010-02-14 02:00:22 +01:00
|
|
|
<input type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'twentyten' ); ?>" />
|
2010-02-07 17:16:26 +01:00
|
|
|
</div>
|
|
|
|
</form>
|