I've been successful in managing several authors on a WordPress blog thanks to this question on StackOverflow. What I've realized is that I would like to have a simpler control. On the previous question I wanted to manage authors on different time intervals, but what I'd want now is just their monthly production.
I guess there's an "easy" SQL query to get a list of authors and posts per month for each of them,
Author No. of posts
====== ============
Paul 23
Ringo 14
John 11
George 31
Instead of going through WP admin panels and filtering by month and author, this would be fast and clear, maybe using the information shown on the (thanks, ypercube) WordPress Database Description. One of the problems I see is how to ask only for certain month and year. In fact that would be the important variable in the query...
Is this difficult?