2016-09-03 291 views
0

我的搜索頁面結果有問題。我已經創建了搜索主題。 當我搜索單詞'موفقیت',它已經在我的數據庫中它返回所有結果,並正常工作,但我只是想在特殊的自定義帖子類型中搜索不是所有的帖子和pages.how我可以解決這個問題wordpress搜索結果頁面

這裏是我的代碼

<?php 
get_header(); ?> 
<div class="title-pack col-md-12 col-sm-12 col-xs-12"> 
     <span class="line visible-sm-block"></span> 
     <span class="visible-sm-block tittle-style">نتایج جستجوی شما</span> 
    </div> 
<div id="search-results" class="wrapper" role="search"> 


<!-- COUNT RESULTS --> 
<div class="results"> 
    <?php 
    /* Search Count */ 
    $allsearch = &new WP_Query("s=$s&showposts=-1"); 
    $key = wp_specialchars($s, 1); 
    $count = $allsearch->post_count; 
    _e(''); 
    _e('"<span class="search-terms">'); 
    echo $key; 
    _e('</span>"'); 
    echo $count . ' مورد یافت شد'; 
    wp_reset_query(); ?> 

</div> 
<!--/COUNT RESULTS --> 

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

<!-- LIST RESULTS --> 
<section> 
    <h3> 
     <li> 
     <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to 
     <?php the_title_attribute(); ?>"><?php the_title(); ?></a> - 
     <span class="search-time"><?php the_time('F, j, Y') ?></span> 
     </li> 
    </h3> 
</section> 
<!--/LIST RESULTS --> 

<?php endwhile; else: ?> 

<!-- 404 SEARCH --> 
<div class="404-search"> 
<?php _e("Oops... We couldn't find what you were searching for. Please try again"); ?> 
</div> 
<!--/404 SEARCH --> 

<?php endif; ?> 

    </div> 


<div style="clear:both;"></div>    
<?php get_footer(); ?> 


    <div style="clear:both;"></div>    
    <?php get_footer(); ?> 

任何想法都會被佔用。

+0

如果你想通過郵局類型過濾,加['post_type'(https://codex.wordpress.org/wp_query#Type_Parameters)到您的查詢。 –

+0

我添加了'$ allsearch =&new WP_Query('s = $ s&showposts = -1','post_type'=>'book'); '但它沒有工作。 ( – mkafiyan

+0

當然它不起作用。無論你使用數組語法或查詢synax的參數。混合它們不起作用。 –

回答

0

試試這個,

$search_query['post_status'] = 'publish'; 
$search_query['post_type'] = 'book'; //your custom post type 
// Custom query. 
$search = new WP_Query($search_query); 

// Check that we have query results. 
if ($search->have_posts()) { 

    // Start looping over the query results. 
    while ($search->have_posts()) { 

     $search->the_post(); 

     // Contents of the queried post results go here. 

    } 

} 

// Restore original post data. 
wp_reset_postdata(); 
+0

它不起作用,我嘗試改變我的代碼。 – mkafiyan

+0

嘗試通過添加'$ search_query [posts_per_page] ='-1';'在$ search = new WP_Query($ search_query)之前。 ' –

+0

我嘗試改變我的編碼方式,但它完美地工作,但我只想搜索特殊的自定義帖子類型'book'。你知道我該如何解決它嗎? – mkafiyan