如何将此表单转换为搜索表单?

时间:2015-02-15 作者:luka

您好,我在wordpress标题中有一个扩展的搜索表单,希望它与我的主题一起工作?

https://jsfiddle.net/u08cutgf/

<div class="search">
search
<input type="text" />
</div>

1 个回复
最合适的回答,由SO网友:Rohit Gilbile 整理而成

Please try this ,

<form name="searchBox" action="<?php echo get_bloginfo(\'url\'); ?>" class="search-form" method="get" role="search" >
        <input type="text" name="s" class="searchBox" placeholder="search" value="<?= $_GET[\'s\'] ?>" required />
         <button type="submit" class="searchBtn" >search</button>
                  </form>
结束

相关推荐

使用WP_LIST_TABLE和SEARCH_BOX():如何分页搜索到的搜索结果?

我正在使用自定义WP\\U List\\U Table-Class,以便在仪表板中显示包含酒店的自定义表格。我可以按预期在右上角跳过分页的页面。搜索表单还添加了$my_list_table_instance->search_box( \'Search\', \'search_id\' ); 它运行良好,但仅限于第一页。在表单中,我有两个隐藏的分页字段:// List and form output $page = filter_input( INPUT_GET, \'page\'