-
-
Notifications
You must be signed in to change notification settings - Fork 619
Expand file tree
/
Copy pathsearchform.php
More file actions
13 lines (13 loc) · 687 Bytes
/
searchform.php
File metadata and controls
13 lines (13 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<form id="argon_serach_form" method="get" action="<?php echo get_option('home'); ?>">
<div class="form-group mb-3">
<div class="input-group input-group-alternative">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-search"></i></span>
</div>
<input name="s" class="form-control" placeholder="<?php _e('搜索什么...', 'argon');?>" type="text" autocomplete="off" >
</div>
</div>
<div class="text-center">
<button onclick="if($('#argon_serach_form input[name=\'s\']').val() != '') {document.getElementById('argon_serach_form').submit();}" type="button" class="btn btn-primary"><?php _e('搜索', 'argon');?></button>
</div>
</form>