Files
argon-theme/searchform.php
nanhaoluo 31d8fde308 feat: Argon WordPress主题完整版本
- 基于Argon主题的WordPress博客主题
- 支持响应式设计和暗色模式
- 包含完整的文章管理和评论系统
- 集成友情链接管理功能
- 支持多种自定义设置选项
- 优化的用户界面和交互体验
2026-01-11 19:48:02 +08:00

13 lines
687 B
PHP

<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>