Answer the question
In order to leave comments, you need to log in
How to find the number of posts for a specific tag in wordpress?
Is there any function that returns the number of posts with a specific tag?
And then you need to count how many of these posts, but doing it through get_posts () is somehow too stupid, because it loads the system with unnecessary data
Answer the question
In order to leave comments, you need to log in
$wp_query = new WP_Query( array( 'tag' => 'bread,baking' ) );
echo $wp_query->found_posts;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question