How can I display ONLY the number of posts from a certain category ? I want to display only the number without the category name.

I used this code

wp_list_categories('show_count=1&include=23&title_li=');

but it displays the category.

Any help please ??

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I think it would help you to read this => http://wordpress.org/support/topic/display-number-of-posts-per-category

function number_postpercat($idcat) {
    global $wpdb;
    $query = "SELECT count FROM $wpdb->term_taxonomy WHERE term_id = $idcat";
    $num = $wpdb->get_col($query);
    echo $num[0];

}

link|improve this answer
1  
WOW ! Super easy and it works ^_^ THANKS – Bialy Jul 22 '11 at 16:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.