mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
25 lines
849 B
PHP
25 lines
849 B
PHP
<?php
|
|
/**
|
|
* Search Form Template
|
|
*
|
|
* @file searchform.php
|
|
* @package Responsive
|
|
* @author CyberChimps
|
|
* @copyright 2020 CyberChimps
|
|
* @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
|
|
*/
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
?>
|
|
<form method="get" id="searchform" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
|
<label class="screen-reader-text" for="s"><?php esc_attr_e( 'Search for:', 'responsive' ); ?></label>
|
|
<input type="search" class="field" name="s" id="s" placeholder="<?php esc_attr_e( 'Search here …', 'responsive' ); ?>" />
|
|
</form>
|