unable to delete comments from wordpress
the problem: unable to delete comments from wordpress (even though the wp-admin)
the solution: go into the database and run this query to delete
DELETE FROM wp_comments WHERE comment_approved = 0
optionally, if you’d like to delete all spam marked comments:
DELETE FROM wp_comments WHERE comment_approved = 'spam'