空の検索はホームページを返しますが、見つからない検索ページを返す方法は?


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のコードはどうですか?
カイザー

search.phpを備えているが、コア検索フォームを使用するボーンテーマを使用しています
-Drai

2
これは、WordPressの一般的な問題であり、テーマ固有の問題ではありません
トムJノウェル

回答:


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;
}

次に、検索フォームで検索クエリを再利用する場合は、1つ以上のスペースにならないようにトリミングを忘れないでください(物事をきれいに保つために、おそらく結果には影響しません)。

<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の問題は、実際に投稿をまったく返さない場合に、すべての投稿(または少なくともスペースが含まれるすべての投稿)を返すことです。
フェリックスイブ14

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

トムのソリューション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())条件を処理しています。if(have_posts)が開始する前に、h3.archiveタイトルの直後に配置します。コンテンツエリアで検索フォーム機能を呼び出すこともできます。


0

私も同じ問題に直面しました、それはデフォルトでワードプレスによって与えられます。

しかし、幸いなことに私は私を助けた何かを見つけました。

「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 ) : ?>

あなたにも役立つかもしれません

詳細についてはこちらをお読みください:空の検索ワードプレスをカスタマイズする


0

空の検索を回避する1つの方法は、検索フィールドの空の値に対して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.
            }

});

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.