Tagged Questions
0
votes
1answer
88 views
Counting number of identical meta keys
Im looking to count how many meta keys exist within a post, because each time a specific user action happens, a new meta key is created with a date in it.
I have this, which does not return anything ...
0
votes
1answer
565 views
wpdb->get_var - count author posts, meta value
In an author.php template, i count the author post in a custom post type with $wpdb->get_var,
$post_author = $curauth->ID; //author id
$count = $wpdb->get_var( "SELECT COUNT(*) FROM ...