-
Notifications
You must be signed in to change notification settings - Fork 1
/
searchform.php
executable file
·30 lines (20 loc) · 950 Bytes
/
searchform.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* Template for displaying search forms
*
* @package My/Theme
*/
namespace My\Theme;
$my_theme_unique_id = uniqid('search-form-');
?>
<form class="search-form" action="<?php echo esc_url(home_url('/')); ?>" method="get" role="search">
<div class="input-group">
<label for="<?php echo esc_attr($my_theme_unique_id); ?>">
<span class="visually-hidden"><?php echo esc_html_x('Search for:', 'label', 'my-theme'); ?></span>
</label>
<input type="search" id="<?php echo esc_attr($my_theme_unique_id); ?>" class="form-control" placeholder="<?php echo esc_attr_x('Search …', 'placeholder', 'my-theme'); ?>" value="<?php echo get_search_query(); ?>" name="s" />
<div class="input-group-append">
<button type="submit" class="btn btn-primary"><?php esc_html_e('Search', 'my-theme'); ?></button>
</div>
</div><!-- .input-group -->
</form><!-- .search-form -->