Wordpress在搜索时返回白页

时间:2015-02-12 17:12:35

标签: php html wordpress

每当我在我的网站上搜索时,我都会收到一个空白错误页面。我尝试过以下方法:

  1. 禁用插件。
  2. 启用调试。
  3. 使用主题检查器扫描我的代码以了解已弃用的代码。
  4. 的search.php

    get_header(); ?>

        <section id="primary" class="content-area">
            <div id="content" class="site-content" role="main">
    
            <?php if ( have_posts() ) : ?>
    
                <header class="page-header">
                    <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'shape' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
                </header><!-- .page-header -->
    
                <?php shape_content_nav( 'nav-above' ); ?>
    
                <?php /* Start the Loop */ ?>
                <?php while ( have_posts() ) : the_post(); ?>
    
                    <?php get_template_part( 'content', 'search' ); ?>
    
                <?php endwhile; ?>
    
                <?php shape_content_nav( 'nav-below' ); ?>
    
            <?php else : ?>
    
                <?php get_template_part( 'no-results', 'search' ); ?>
    
            <?php endif; ?>
    
            </div><!-- #content .site-content -->
        </section><!-- #primary .content-area -->
    

    Searchform.php

    <form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
        <label for="s" class="assistive-text"><?php _e( 'Search', 'shape' ); ?></label>
        <input type="text" class="field" name="s" value="<?php echo esc_attr( get_search_query() ); ?>" id="s" placeholder="<?php esc_attr_e( 'Search &hellip;', 'shape' ); ?>" />
        <input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'shape' ); ?>" />
    </form>
    

    奇怪的是,我的所有HTML都会在搜索时出现,但我仍然会看到死亡的白页。

    我做错了什么?

1 个答案:

答案 0 :(得分:1)

使用CTRL + U可以读取所有代码。所以你的WordPress工作。其中一个问题是.search类下的CSS中的display:none值。所以删除.search {display:none;来自CSS的行。