如何制作此代码(自定义):
<div id="sb-search" class="sb-search">
<form>
<input class="sb-search-input" placeholder="Search.." type="text" value="" name="search" id="search">
<input class="sb-search-submit" type="submit" value="">
<span class="sb-icon-search"></span>
</form>
</div>
检索像这样的搜索结果( wordpress ):
<form method="get" class="searchform" action="<?php echo home_url('/'); ?>">
<div>
<input type="text" class="search" name="s" onblur="if(this.value=='')this.value='<?php _e('To search type and hit enter','typegrid'); ?>';" onfocus="if(this.value=='<?php _e('To search type and hit enter','typegrid'); ?>')this.value='';" value="<?php _e('To search type and hit enter','typegrid'); ?>" />
</div>
基本上我得到了这个自定义代码,用于一个带有点击幻灯片等的很棒的搜索框。它有一个人们可以输入的字段,但它没有得到我的 wordpress 网站上使用的结果。我想让它能够从不改变 div 的 wordpress 内容中获得结果,从而不改变它的设计。请帮忙,我卡住了!!