or browse through some tags...
Candid Sky Black and White Architecture Street Canon 20D Urban Cork Ireland irishblogs People Sigma 10-20 Photos Cork Photos Irish photos
If you’re interested, the following SQL will give you the top commenters on your own WordPress blog:
SELECT comment_author, comment_author_url, count( * ) AS c FROM wp_comments WHERE comment_date > date_sub( NOW( ) , INTERVAL 1 MONTH ) GROUP BY comment_author ORDER BY c DESC
And this chunk of code will give you the posts with the most comments made in the past month:
SELECT comment_post_ID , post_name, count( * ) as c FROM wp_comments, wp_posts WHERE wp_comments.comment_post_ID = wp_posts.ID AND comment_date > date_sub( NOW( ) , INTERVAL 1 MONTH ) GROUP BY comment_post_ID ORDER BY `c` DESC

5 Comments