22 lines
495 B
PHP
22 lines
495 B
PHP
<form role="search" method="get" class="search-form" action="{{ home_url('/') }}">
|
|
<label>
|
|
<span class="sr-only">
|
|
{{ _x('Search for:', 'label', 'sage') }}
|
|
</span>
|
|
|
|
<input
|
|
type="search"
|
|
class=""
|
|
placeholder="{!! esc_attr_x('Search …', 'placeholder', 'sage') !!}"
|
|
value="{{ get_search_query() }}"
|
|
name="s"
|
|
>
|
|
</label>
|
|
|
|
<input
|
|
type="submit"
|
|
class=""
|
|
value="{{ esc_attr_x('Search', 'submit button', 'sage') }}"
|
|
>
|
|
</form>
|