-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchform.php
25 lines (25 loc) · 984 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
<div class="Search"
id="search"
role="search"
>
<form action="<?php echo esc_url( get_search_link() ); ?>">
<fieldset>
<legend class="u-hidden"><?php _e( 'Search by keywords on this site', THISTLE_CHILD_TEXT_DOMAIN ); ?></legend>
<div>
<label class="u-hidden" for="searchS"><?php _e( 'Keywords to search', THISTLE_CHILD_TEXT_DOMAIN ); ?></label>
<input type="search"
name="s"
value="<?php the_search_query(); ?>"
placeholder="<?php esc_attr_e( 'Enter your keywords…', THISTLE_CHILD_TEXT_DOMAIN ); ?>"
id="searchS"
>
</div>
</fieldset>
<button type="submit">
<svg>
<title><?php _e( 'Search', THISTLE_CHILD_TEXT_DOMAIN ); ?></title>
<use xlink:href="#SearchIcon"></use>
</svg>
</button>
</form>
</div>