占位符Web表单中的get_search_form(wordpress)

时间:2011-07-20 13:39:58

标签: php html

我制作了一个占位符网页表单:

<input type="text" value="Search" onfocus="if (this.value == 'Search') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search';}" >

现在我需要在其中添加Wordpress get_search_form代码,以允许此表单搜索我的网站。你能帮我解决一下如何实现这个目标吗?

继承search.php代码:http://i.stack.imgur.com/NfWi0.png

1 个答案:

答案 0 :(得分:2)

还有一个名为searchform.php的模板文件。这是一个模板文件,通常包含在许多主题的侧边栏中,并生成搜索框表单。如果您的主题中没有一个,您可以轻松地从默认主题或下面的代码中复制它

    <form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
    <label for="s" class="assistive-text"><?php _e( 'Search' ); ?></label>
    <input type="text" name="s" id="s" placeholder="<?php esc_attr_e( 'Search' ); ?>" onfocus="if (this.value == 'Search') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search';}" />
    <input type="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search' ); ?>" />
</form>