mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-22 07:51:06 +00:00
15 lines
660 B
PHP
15 lines
660 B
PHP
<?php
|
|
/**
|
|
* The template for displaying search forms in Fruitful theme
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Fruitful theme
|
|
* @since Fruitful theme 1.0
|
|
*/
|
|
?>
|
|
<form method="get" id="searchform" action="<?php echo esc_url( home_url() ); ?>" role="search">
|
|
<label for="s" class="assistive-text"><?php _e( 'Search', 'fruitful' ); ?></label>
|
|
<input type="text" class="field" name="s" value="<?php echo esc_attr( get_search_query() ); ?>" id="s" placeholder="<?php esc_attr_e( 'Type Here to Search', 'fruitful' ); ?>" />
|
|
<input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'fruitful' ); ?>" />
|
|
</form>
|