Home › Forums › Back End › Count posts excluding certain categories › Reply To: Count posts excluding certain categories
January 30, 2015 at 11:35 am
#194719
Participant
Is there way to do this for a specific post type? Here’s what I am working with and trying to exclude categories,
<?php
$count_posts = wp_count_posts('sponsors');
$published_posts = $count_posts->publish;
$count = $published_posts/7;
$args = array(
'posts_per_page' => -1,
'post_type' => 'sponsors'
);
query_posts($args);
?>