2013-11-20 3 views
0

나는 내 자신의 검색 양식 페이지와 검색 페이지를 만들었지 만 검색 결과가 아무것도 돌려주지 않으면 웹에서 많은 검색을하고 문제를 찾기 위해 자습서를 따르십시오. 그러나 나는 할 수 없다. 그녀는 코드입니다 :wordpress 검색 페이지는 검색 결과를 제공하지 않습니다

searchform.php :

<form role="search" method="get" class="visible-lg search-form arrow_box search-back navbar-form navbar-right" action="<?php echo home_url('/'); ?>"> 
    <div class="form-group"> 
     <input type="search" class="search-field form-control" size="49" placeholder="بگەڕێ" value="" name="s" title="بگەڕێ" /> 
    </div> 
    <input type="submit" class="search-submit search-button btn btn-default" value="بگەڕێ" /> 
</form> 

search.php : 내가 마지막으로 나는 제목이나 이후에 내용을 추가 할 필요가 있음을 발견 많은 코드를 시도 후

<?php 
/* 
Template Name: Search Page 
*/ 
?> 
<?php get_header(); ?> 
<div class="container"> 
    <div class="row"> 
     <div class="col-md-5 news"> 
      <?php if (have_posts()) : ?> 
       <?php 
       global $wp_query; 
       $total_results = $wp_query->found_posts; 
       ?> 
       <?php printf(__('ئەنجامەکانی گەڕان بۆ: %s', 'shape'), '<span>' . get_search_query() . '</span>'); ?> 
       <?php /* Start the Loop */ ?> 
       <?php while (have_posts()) : the_post(); ?> 
        <?php get_template_part('content', 'search'); ?> 
       <?php endwhile; ?> 
      <?php else : ?> 
       <?php get_template_part('no-results', 'search'); ?> 
      <?php endif; ?> 
     </div> 
     <?php get_sidebar(); ?> 
    </div> 
</div> 
<?php get_footer(); ?> 

답변

0

while 루프, 나는 왜 그런지 모르지만 이것이 방금 search.php를 변경 한 해결책이다.

<?php 
/* 
Template Name: Search Page 
*/ 
?> 
<?php get_header(); ?> 
<div class="container"> 
    <div class="row"> 
     <div class="col-md-5 news"> 
      <?php if (have_posts()) : ?> 
       <?php 
       global $wp_query; 
       $total_results = $wp_query->found_posts; 
       ?> 
       <?php printf(__('serch results for: %s', 'shape'), '<span>' . get_search_query() . '</span>'); ?> 
       <br/><br/> 
       <?php /* Start the Loop */ ?> 
       <?php while (have_posts()) : the_post(); ?> 
        <h4 class=""><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4> 
        <div class="naskh"><?php the_excerpt(); ?></div> 
       <?php endwhile; ?> 
      <?php else : ?> 
       <h4>Nothing found try something else.</h4> 
      <?php endif; ?> 
     </div> 
     <?php get_sidebar(); ?> 
    </div> 
</div> 
<?php get_footer(); ?> 
관련 문제