I’m looking to count how many post live within the custom post type called “videos”, but only the ones from the category called “work”.
<?php $count_posts = wp_count_posts('videos'); echo $count_posts->publish; // ?>
How can I adjust the above code to accomplish this?
Thanks!