wp/wp-content/themes/twentysixteen/searchform.php
changeset 8 c7c34916027a
parent 7 cf61fcea0001
child 9 177826044cd9
equal deleted inserted replaced
7:cf61fcea0001 8:c7c34916027a
     1 <?php
       
     2 /**
       
     3  * Template for displaying search forms in Twenty Sixteen
       
     4  *
       
     5  * @package WordPress
       
     6  * @subpackage Twenty_Sixteen
       
     7  * @since Twenty Sixteen 1.0
       
     8  */
       
     9 ?>
       
    10 
       
    11 <form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
       
    12 	<label>
       
    13 		<span class="screen-reader-text"><?php echo _x( 'Search for:', 'label', 'twentysixteen' ); ?></span>
       
    14 		<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search &hellip;', 'placeholder', 'twentysixteen' ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
       
    15 	</label>
       
    16 	<button type="submit" class="search-submit"><span class="screen-reader-text"><?php echo _x( 'Search', 'submit button', 'twentysixteen' ); ?></span></button>
       
    17 </form>