d7266c0c00
Nice to have, but optional, improvements it'd be nice to have: * Ability to have random rotating headers. (Core improvement to custom header functionality.) * Color and layout options. * More post formats. (Currently supporst Asides, Links, and Galleries.) * CMS-style slider home page option. Welcome, TwentyEleven née Duster. :) Track at #17198. git-svn-id: https://develop.svn.wordpress.org/trunk@17669 602fd350-edb4-49c9-b593-d223f7449a82
11 lines
401 B
PHP
11 lines
401 B
PHP
<?php
|
|
/**
|
|
* @package WordPress
|
|
* @subpackage Twenty Eleven
|
|
*/
|
|
?>
|
|
<form method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
|
|
<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>
|