blogside/searchform.php

5 lines
453 B
PHP
Raw Normal View History

2016-03-22 13:00:51 +01:00
<form method="get" class="searchform themeform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
2016-02-03 11:28:05 +01:00
<div>
2018-10-31 13:03:44 +01:00
<input type="text" class="search" name="s" onblur="if(this.value=='')this.value='<?php esc_attr_e('To search type and hit enter','blogside'); ?>';" onfocus="if(this.value=='<?php esc_attr_e('To search type and hit enter','blogside'); ?>')this.value='';" value="<?php esc_attr_e('To search type and hit enter','blogside'); ?>" />
2016-02-03 11:28:05 +01:00
</div>
</form>