first commit
This commit is contained in:
15
wp-content/themes/worldwide-v1-01/searchform.php
Normal file
15
wp-content/themes/worldwide-v1-01/searchform.php
Normal file
@ -0,0 +1,15 @@
|
||||
<div class="gdl-search-form">
|
||||
<form method="get" id="searchform" action="<?php echo home_url(); ?>/">
|
||||
<?php
|
||||
$search_val = get_search_query();
|
||||
if( empty($search_val) ){
|
||||
$search_val = __("Type keywords..." , "gdl_front_end");
|
||||
}
|
||||
?>
|
||||
<div class="search-text" id="search-text">
|
||||
<input type="text" value="<?php echo $search_val; ?>" name="s" id="s" autocomplete="off" data-default="<?php echo $search_val; ?>" />
|
||||
</div>
|
||||
<input type="submit" id="searchsubmit" value="" />
|
||||
<div class="clear"></div>
|
||||
</form>
|
||||
</div>
|
Reference in New Issue
Block a user