forked from cyberchimps/fine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchform.php
More file actions
22 lines (21 loc) · 761 Bytes
/
searchform.php
File metadata and controls
22 lines (21 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* Title: Search form template.
*
* Description: Defines the search form.
*
* Please do not edit this file. This file is part of the Cyber Chimps Framework and all modifications
* should be made in a child theme.
*
* @category Cyber Chimps Framework
* @package Framework
* @since 1.0
* @author CyberChimps
* @license http://www.opensource.org/licenses/gpl-license.php GPL v3.0 (or later)
* @link http://www.cyberchimps.com/
*/
?>
<form method="get" id="searchform" class="navbar-search pull-right" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
<input type="text" class="search-query input-medium" name="s" placeholder="<?php esc_attr_e( 'Search', 'fine' ); ?> …"/>
</form>
<div class="clear"></div>