Files
bedrock/templates/searchform.php
Bryan Clark eca7244b50 Preserve the search query in the search input when the user performs a search.
This allows people to alter the text instead of retyping their query upon re-searching.
2012-11-04 10:47:23 -08:00

5 lines
479 B
PHP

<form role="search" method="get" id="searchform" class="form-search" action="<?php echo home_url('/'); ?>">
<label class="hide" for="s"><?php _e('Search for:', 'roots'); ?></label>
<input type="text" value="<?php if (is_search()) { echo get_search_query(); } ?>" name="s" id="s" class="search-query" placeholder="<?php _e('Search', 'roots'); ?> <?php bloginfo('name'); ?>">
<input type="submit" id="searchsubmit" value="<?php _e('Search', 'roots'); ?>" class="btn">
</form>