最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

count results in search page based on custom category

programmeradmin4浏览0评论

I have a seach page in which am showing results based on keyword and custom category search. Issue i am facing is that, I need to display the count of results. I had referred the wordpress documentation and found some codes, for eg :

<h2 class="pagetitle">Search Result for <?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>'); 
    _e(' &mdash; '); 
    echo $count . ' '; 
    _e('articles'); 
    wp_reset_query(); 
?></h2>

But this displays the total search results and I need results count filtered by found in the specified category

I have a seach page in which am showing results based on keyword and custom category search. Issue i am facing is that, I need to display the count of results. I had referred the wordpress documentation and found some codes, for eg :

<h2 class="pagetitle">Search Result for <?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>'); 
    _e(' &mdash; '); 
    echo $count . ' '; 
    _e('articles'); 
    wp_reset_query(); 
?></h2>

But this displays the total search results and I need results count filtered by found in the specified category

Share Improve this question edited Jun 6, 2012 at 7:52 Eugene Manuilov 11.4k4 gold badges44 silver badges50 bronze badges asked Jun 6, 2012 at 6:31 user930026user930026 1431 gold badge2 silver badges12 bronze badges 1
  • pay attention that showposts arguments is deprecated as of version 2.1, use posts_per_page instead – Eugene Manuilov Commented Jun 6, 2012 at 7:10
Add a comment  | 

1 Answer 1

Reset to default 0

Have you tried wp_count_posts ? http://codex.wordpress/Function_Reference/wp_count_posts

I think that will work here.

发布评论

评论列表(0)

  1. 暂无评论