mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-12 11:21:13 +01:00
7d581043df
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: http://svn.automattic.com/wordpress/trunk@17669 1a063a9b-81f0-0310-95a4-ce76da25c4cd
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>
|