wordpress/php-fpm/wordpress_files/themes/shell-lite/searchform.php

21 lines
815 B
PHP
Raw Normal View History

2020-05-22 03:40:23 +02:00
<?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 &hellip;', 'shell'); ?>" />
<input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Go', 'shell' ); ?>" />
</form>