-
Notifications
You must be signed in to change notification settings - Fork 3
/
searchform.php
24 lines (23 loc) · 1.28 KB
/
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
<?php
/*
================================================================================================
The template for displaying search forms
================================================================================================
@package Arlene
@link https://developer.wordpress.org/reference/functions/get_search_form/
@copyright Copyright (C) 2017. Samuel Guebo
@license GNU General Public License v2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
@author Samuel Guebo (http://samuelguebo.co/)
================================================================================================
*/
?>
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<div class="row collapse">
<div class="small-10 columns">
<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search …', 'placeholder', 'arlene' ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
</div>
<div class="small-2 columns">
<button type="submit" class="search-submit button small"><span class="screen-reader-text"><i class="fa fa-search"></i></span></button>
</div>
</div>
</form>