mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
25d1363a66
Built from https://develop.svn.wordpress.org/trunk@25625 git-svn-id: http://core.svn.wordpress.org/trunk@25542 1a063a9b-81f0-0310-95a4-ce76da25c4cd
15 lines
589 B
PHP
15 lines
589 B
PHP
<?php
|
|
/**
|
|
* Template for displaying search forms in Twenty Eleven
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Eleven
|
|
* @since Twenty Eleven 1.0
|
|
*/
|
|
?>
|
|
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
|
<label for="s" class="assistive-text"><?php _e( 'Search', 'twentyeleven' ); ?></label>
|
|
<input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e( 'Search', 'twentyeleven' ); ?>" />
|
|
<input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'twentyeleven' ); ?>" />
|
|
</form>
|