mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
14 lines
446 B
PHP
14 lines
446 B
PHP
<form action="<?php echo esc_url(home_url('/')); ?>" method="get" role="search">
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" name="s" id="search"
|
|
value="<?php the_search_query(); ?>"
|
|
placeholder="<?php esc_attr_e('Buscar', 'twentytwelve'); ?>"
|
|
>
|
|
<span class="input-group-addon">
|
|
<button type="submit"><i class="fa fa-search"></i></button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</form>
|