mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
17 lines
497 B
PHP
17 lines
497 B
PHP
<?php
|
|
/**
|
|
* Theme: silverOrchid
|
|
* Theme URL: http://gazpo.com/2012/04/silverorchid
|
|
* Created: April 2012
|
|
* Author: Sami Ch.
|
|
* URL: http://gazpo.com
|
|
*
|
|
**/
|
|
?>
|
|
|
|
<form method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
|
|
<div>
|
|
<input class="searchfield" type="text" value="<?php _e('Buscar','twentytwelve');?>" name="s" id="s" onfocus="if (this.value == 'Buscar') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Buscar';}" />
|
|
</div>
|
|
</form>
|