空搜索返回首页,如何返回未找到的搜索页面?


16

默认搜索功能如果搜索表单为空,则返回主页,我希望它返回“对不起,您的搜索未返回结果”页面。

这篇文章没有回答

这张票告诉我,这应该是函数的方式!除了使用.htaccess重定向以外,有人知道如何更改它吗?

我正在使用以下search.php文件:

        <div id="content" class="clearfix">

            <div id="main" class="col700 left clearfix" role="main">

                <h1 class="archive_title"><span>Search Results for:</span> <?php echo esc_attr(get_search_query()); ?></h1>

                <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

                <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>

                    <header>

                        <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>

                        <p class="meta"><?php _e("Posted", "bonestheme"); ?> <time datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time('F jS, Y'); ?></time> <?php _e("by", "bonestheme"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "bonestheme"); ?> <?php the_category(', '); ?>.</p>

                    </header> <!-- end article header -->

                    <section class="post_content">
                        <?php the_excerpt('<span class="read-more">Read more on "'.the_title('', '', false).'" &raquo;</span>'); ?>

                    </section> <!-- end article section -->

                    <footer>


                    </footer> <!-- end article footer -->

                </article> <!-- end article -->

                <?php endwhile; ?>  

                <?php if (function_exists('page_navi')) { // if expirimental feature is active ?>

                    <?php page_navi(); // use the page navi function ?>

                <?php } else { // if it is disabled, display regular wp prev & next links ?>
                    <nav class="wp-prev-next">
                        <ul class="clearfix">
                            <li class="prev-link"><?php next_posts_link(_e('&laquo; Older Entries', "bonestheme")) ?></li>
                            <li class="next-link"><?php previous_posts_link(_e('Newer Entries &raquo;', "bonestheme")) ?></li>
                        </ul>
                    </nav>
                <?php } ?>          

                <?php else : ?>

                <!-- this area shows up if there are no results -->

                <article id="post-not-found">
                    <header>
                        <h1>No Results Found</h1>
                    </header>
                    <section class="post_content">
                        <p>Sorry, but the requested resource was not found on this site.</p>
                    </section>
                    <footer>
                    </footer>
                </article>

                <?php endif; ?>

            </div> <!-- end #main -->

            <div id="sidebar1" class="sidebar right col220">

                <?php get_search_form(); ?>



            </div>

        </div> <!-- end #content -->

`


显示一些代码?
kaiser

我什至不知道从哪里开始解决这个问题(除了htaccess),所以没有代码。感谢您的帮助
-Drai

您的searchform.php和search.php代码如何?
kaiser

我正在使用具有search.php的骨头主题,但使用的是核心searchform
Drai

2
这是一般的WordPress问题,而不是主题特定的问题
Tom J Nowell

Answers:


18

这是解决此问题的3种方法,我建议您使用解决方案2,但首先要注意解决方案1中的jQuery,这是避免出现这种情况的一种方法。

对于那些想要从提问者主题中发布更多代码的人,这不是主题问题,这是一个影响所有WordPress网站的一般WordPress问题。

解决方案1

您可以在此处找到有关如何解决此问题的深入教程:

http://wpengineer.com/2162/fix-empty-searches/

今天,让我们看一些大多数专业人士从未见过的东西:空搜索。您提供了一个搜索输入字段,并且有人无意中按下了提交按钮,而没有输入任何术语。结果URI如下所示:example.com/?s=。它显示的内容与您的首页相同。实际上,它是头版。

没有人需要。

解决方案2(推荐)

摘自Spitzerg的帖子http://wordpress.org/support/topic/blank-search-sends-you-to-the-homepage

另一种选择是添加请求过滤器:

add_filter( 'request', 'my_request_filter' );
function my_request_filter( $query_vars ) {
    if( isset( $_GET['s'] ) && empty( $_GET['s'] ) ) {
        $query_vars['s'] = " ";
    }
    return $query_vars;
}

然后,如果您要在搜索表单中重复使用搜索查询,请不要忘记对其进行修剪,以免最终没有一个或多个空格(只是保持内容整洁,可能不会影响结果。

<input type="text" name="s" id="s" value="<?php echo trim( get_search_query() ); ?>"/>

希望这会有所帮助,到目前为止,它似乎可以在我的网站上正常运行,并且无需更改任何WP代码即可使升级更容易。

解决方案3

http://www.warpconduit.net/2011/08/02/fix-redirection-and-error-page-on-empty-wordpress-search/

与解决方案2类似,但没有那么广泛,也略有不同。

if(!is_admin()){
    add_action('init', 'search_query_fix');
    function search_query_fix(){
        if(isset($_GET['s']) && $_GET['s']==''){
            $_GET['s']=' ';
        }
    }
}

1
解决方案2的问题在于,当它实际上根本不返回任何帖子时,它将返回每个帖子(或至少每个其中有空格的帖子)。
菲利克斯·夏娃

2

创建一个页面Search.php并粘贴此代码,并使用“ get_template_part('loop','search');更改您的循环;

                    <div id="container">
                        <div id="content" role="main">

            <?php if ( have_posts() ) : ?>
                            <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'mb' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
                            <?php
                            /* Run the loop for the search to output the results.
                             * If you want to overload this in a child theme then include a file
                             * called loop-search.php and that will be used instead.
                             */
                             get_template_part( 'loop', 'search' );
                            ?>
            <?php else : ?>
                            <div id="post-0" class="post no-results not-found">
                                <h2 class="entry-title"><?php _e( 'Nothing Found', 'mb' ); ?></h2>
                                <div class="entry-content">
                                    <p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
                                    <?php get_search_form(); ?>
                                </div><!-- .entry-content -->
                            </div><!-- #post-0 -->
            <?php endif; ?>
                        </div><!-- #content -->
                    </div><!-- #container -->

            <?php get_sidebar(); ?>
            <?php get_footer(); ?>

2

在Tom解决方案2的基础上,但要确保没有返回任何帖子,请像以前一样添加请求过滤器:

add_filter( 'request', 'my_request_filter' );
function my_request_filter( $query_vars ) {
    if( isset( $_GET['s'] ) && empty( $_GET['s'] ) ) {
        $query_vars['s'] = " ";
        global $no_search_results;
        $no_search_results = TRUE;
    }
    return $query_vars;
}

但这一次设置一个全局变量,表示不应返回任何搜索结果。然后使用posts_where钩子确保没有返回任何帖子:

add_filter( 'posts_where' , 'posts_where_statement' ); 
function posts_where_statement( $where ) {
    global $no_search_results;
    if($no_search_results) {
        $where .= ' AND 1=0';
    }
    return $where;
}

1

检查搜索查询是否为空(get_search_query()),只需将第一个IF替换为:

<?php if (have_posts() && get_search_query()) : while (have_posts()) : the_post(); ?>

我认为这是足够公平的解决方案。简单干净。没有可以使代码复杂的特殊过滤器和操作
Kamil

0

我将按照以下主题处理它。尝试使用以下代码:

<?php if (!have_posts()): ?>
    <article id="post-0">
        <header>
            <h3>No posts found.</h3>
        </header> <!-- end article header -->

        <section class="post_content">
           Sorry, we found 0 posts for your search, Please try searching again.
        </section> <!-- end article section -->

        <footer>
        </footer> <!-- end article footer -->

    </article> <!-- end article -->
<?php endif; ?>

我们正在处理if(!have_posts())条件。将其放在您的h3.archive标题之后,if(have_posts)开始之前。您甚至可以在内容区域中调用搜索表单功能。


0

我也遇到了同样的问题,它是wordpress默认提供的。

但幸运的是,我发现了一些对我有所帮助的东西。

在“ Functions.php”中添加以下内容

 function SearchFilter($query) {
    // If 's' request variable is set but empty
    if (isset($_GET['s']) && empty($_GET['s']) && $query->is_main_query()){
        $query->is_search = true;
        $query->is_home = false;
    }
    return $query;}
add_filter('pre_get_posts','SearchFilter');

然后在search.php中替换以下行(第15行)

<?php if ( have_posts() && strlen( trim(get_search_query()) ) != 0 ) : ?>

可能会对您有帮助

有关详细信息,请阅读:自定义空搜索wordpress


0

避免空搜索的一种方法是对搜索字段的空值执行JavaScript检查,如果发现的字段为空,则停止提交搜索表单,如下所示:

$('#searchform').submit(function(){

            search_value =$.trim($('#searchform #s').val());

            if(search_value == ""){

                return false; // You can also pop a notification here to inform to user.
            }

});

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.