This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/searchform.php

20 lines
707 B
PHP
Raw Normal View History

<?php
/**
* The template for displaying search forms in Underscores.me
*
* @package understrap
*/
2016-11-21 18:47:05 +00:00
?>
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
2017-01-27 14:37:59 +00:00
<label class="assistive-text" for="s"><?php esc_html_e( 'Search', 'understrap' ); ?></label>
2016-11-21 18:47:05 +00:00
<div class="input-group">
<input class="field form-control" id="s" name="s" type="text"
placeholder="<?php esc_attr_e( 'Search &hellip;', 'understrap' ); ?>" value="<?php the_search_query(); ?>">
2016-11-21 18:47:05 +00:00
<span class="input-group-btn">
<input class="submit btn btn-primary" id="searchsubmit" name="submit" type="submit"
value="<?php esc_attr_e( 'Search', 'understrap' ); ?>">
</span>
</div>
</form>