2

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 ??

Bialy
  • 73
  • 2
  • 9

1 Answers1

1

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];

}

Emil Condrea
  • 9,705
  • 7
  • 33
  • 52