这个是zblog的搜索功能代码

1
2
3
4
<form name="search" method="get" action="<?php bloginfo('url'); ?>/"> 
<input class="br" type="text" name="q" placeholder="搜索..." />
</form>

这个是WordPress搜索功能代码

1
2
3
4
<form name="search" method="get" action="<?php bloginfo('url'); ?>/"> 
<input class="br" type="text" name="s" placeholder="搜索..." />
</form>

总结

1
2
zblog 是name=”q”    WordPress name=”s”