Counting posts that contain a custom meta
-
I created a custom meta for my posts and I’m trying to echo the number of posts with a certain meta.
In a query loop
... query_posts('meta_value=' . $some_value); ...
I used
$count_posts = wp_count_posts(); echo $count_posts;
but I get this error
Catchable fatal error: Object of class stdClass could not be converted to string
I’m not sure if the wp function can be used with meta.. should I just use a normal query?
SELECT COUNT(*) FROM $wpdb->posts WHERE custom_meta = $some_value
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Counting posts that contain a custom meta’ is closed to new replies.