19 lines
603 B
PHP
19 lines
603 B
PHP
<?php
|
|
/**
|
|
* Search Form template
|
|
*
|
|
* @package THINKAI
|
|
* @author Theme Kalia
|
|
* @version 1.0
|
|
*/
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
die( 'Restricted' );
|
|
}
|
|
?>
|
|
|
|
|
|
<form method="post" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
|
<label for="search" class="sr-only"><?php esc_html_e('search here','thinkai'); ?></label>
|
|
<input type="text" id="search" name="s" value="<?php echo get_search_query(); ?>" placeholder="<?php echo esc_attr__( 'Search...', 'thinkai' ); ?>" required />
|
|
<button type="submit" aria-label="search submit" class="thm-btn"><i class="icon-loupe"></i></button>
|
|
</form>
|