wp_reset_postdata();
$current_year = date('Y');
$current_month = date('m');
$args = array(
'cat' => 3,
'year' => $current_year,
'monthnum' => $current_month,
'post_status' => 'publish',
'post_type' => 'post'
);
$number_posts = get_posts( $args );
echo 'New posts ' . count($number_posts);
Этот код отображает количество сообщений в текущем месяце.