mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
21 lines
815 B
PHP
21 lines
815 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Theme's Search Form
|
||
|
*
|
||
|
*
|
||
|
* @file searchform.php
|
||
|
* @package WordPress
|
||
|
* @subpackage Shell
|
||
|
* @author Emil Uzelac, nofearinc
|
||
|
* @copyright 2003 - 2012 ThemeID, 2013 DevWP
|
||
|
* @license license.txt
|
||
|
* @version Release: 1.0
|
||
|
* @filesource wp-content/themes/shell-lite/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( '/' ); ?>">
|
||
|
<input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e('search here …', 'shell'); ?>" />
|
||
|
<input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Go', 'shell' ); ?>" />
|
||
|
</form>
|