2010-03-29 18:03:15 -04: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 15:28:13 -05:00
|
|
|
<form id="searchform" name="searchform" method="get" action="<?php echo home_url(); ?>">
|
2010-02-07 11:16:26 -05:00
|
|
|
<div>
|
2010-02-13 20:00:22 -05:00
|
|
|
<label for="s"><?php _e( 'Search', 'twentyten' ); ?></label>
|
2010-02-07 11:16:26 -05:00
|
|
|
<input type="text" id="s" name="s" />
|
2010-02-13 20:00:22 -05:00
|
|
|
<input type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'twentyten' ); ?>" />
|
2010-02-07 11:16:26 -05:00
|
|
|
</div>
|
|
|
|
</form>
|