12 lines
549 B
PHP
12 lines
549 B
PHP
<?php
|
|
/**
|
|
* Template for displaying search form
|
|
*/
|
|
?>
|
|
<form role="search" method="get" id="searchform" class="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
|
<div>
|
|
<label class="screen-reader-text" for="s"><?php _e( 'Search for:', 'toppic' ); ?></label>
|
|
<input type="text" class="searchtext" value="<?php echo get_search_query(); ?>" name="s" id="s" placeholder="<?php _e( 'To search type and hit enter', 'toppic' ); ?>" />
|
|
<input type="submit" id="searchsubmit" value="<?php _e( 'Search', 'toppic' ); ?>" />
|
|
</div>
|
|
</form>
|