0

我正在网站 www.carsofchange.com 上工作,并且搜索功能正在运行。它返回,“对不起,没有帖子符合您的条件。” 对于所有搜索。

我正在使用 Sleek Child Theme 和 Genesis 平台。

我打开了运行搜索的 PHP 文件,但我没有搜索如何知道这是否是错误所在。PHP文件如下:

<div id="topnav">
<div class="wrap">
<!-- end #topnav <p>
        <a class="rss-topnav" rel="nofollow" href="<?php    bloginfo('rss_url'); ?>"><?php _e("Posts", 'genesis'); ?></a>
        <a class="rss-topnav" rel="nofollow" href="<?php bloginfo('comments_rss2_url'); ?>"><?php _e("Comments", 'genesis'); ?></a>-->
     <p>        
<form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">
<input type="text" size="put_a_size_here" name="s" id="s" value="Search"   onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;"/>
<input type="submit" id="searchsubmit" value="Search" class="btn" />
</form></p>
</div><!-- end .wrap -->
</div><!-- end #topnav -->

这似乎不是 CSS 错误,我尝试打开和关闭 Search Everything 插件,但没有任何运气。感谢您的时间和您可以提供的任何帮助。

4

1 回答 1

2

试试这个代码:

<form method="get" id="search-form" action="<?php echo esc_url( home_url( '/' ) );?>"> <input type="text" class="field" name="s" id="input-text" placeholder="<?php esc_attr_e( 'Search', 'themename' ); ?>" /> <input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( '', 'themename' ); ?>" /> </form>

于 2013-07-20T13:33:40.247 回答