12345678910111213141516 |
- <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"
- placeholder="{!! esc_attr_x('Search …', 'placeholder', 'sage') !!}"
- value="{{ get_search_query() }}"
- name="s"
- >
- </label>
- <button>{{ _x('Search', 'submit button', 'sage') }}</button>
- </form>
|