W
W
Web Lizard2016-04-15 17:29:16
WordPress
Web Lizard, 2016-04-15 17:29:16

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

1 answer(s)
I
Ivan Kozlov, 2016-04-15
@Lizard-108

$wp_query = new WP_Query( array( 'tag' => 'bread,baking' ) );
echo $wp_query->found_posts;

bread,baking - tags

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question