14 lines
652 B
PHP
14 lines
652 B
PHP
<?php
|
|
/**
|
|
* The template for displaying search forms in Twenty Fourteen
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Fourteen
|
|
*/
|
|
?>
|
|
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
|
|
<label for="s" class="assistive-text"><?php _e( 'Search', 'twentyfourteen' ); ?></label>
|
|
<input type="text" class="field" name="s" value="<?php echo esc_attr( get_search_query() ); ?>" id="s" placeholder="<?php esc_attr_e( 'Search …', 'twentyfourteen' ); ?>" />
|
|
<input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'twentyfourteen' ); ?>" />
|
|
</form>
|