12 lines
530 B
PHP
12 lines
530 B
PHP
<?php
|
|
/**
|
|
* The template for displaying search form.
|
|
*/
|
|
?>
|
|
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
|
<label>
|
|
<span class="screen-reader-text"><?php esc_html_e( 'Search for:', 'abiz' ); ?></span>
|
|
<input type="search" class="search-field" placeholder="<?php esc_attr_e( 'Search', 'abiz' ); ?>" value="" name="s">
|
|
</label>
|
|
<button type="submit" class="search-submit" value="<?php esc_attr_e( 'Search', 'abiz' ); ?>"><i class="fa fa-search"></i></button>
|
|
</form>
|