-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchform.php
More file actions
25 lines (23 loc) · 874 Bytes
/
searchform.php
File metadata and controls
25 lines (23 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
// Exit if accessed directly
if ( !defined('ABSPATH')) exit;
/**
* Search Form Template
*
*
* @file searchform.php
* @package Responsive
* @author Emil Uzelac
* @copyright 2003 - 2012 ThemeID
* @license license.txt
* @version Release: 1.0
* @filesource wp-content/themes/responsive/searchform.php
* @link http://codex.wordpress.org/Function_Reference/get_search_form
* @since available since Release 1.0
*/
?>
<form method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
<label for="s">Search</label>
<input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e('search here …', 'responsive'); ?>" />
<input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e('Go', 'responsive'); ?>" />
</form>