Count tags for a specific category
count how many posts are tagged but only include those posts that belong to a specific category You can’t do that via get_terms(), but you can make a WP_Query query and use the $found_posts property to get the total posts. So for example, in your foreach, you can use the tag and cat parameters like … Read more