Forums
Forums / Fixing WordPress / Delete all one-word comments
(@acy)
13 years, 3 months ago
I’m trying to delete all wordpress comments with only one word. I found this mysql query to delete all comments at once, but that’s not what I want to achieve: DELETE FROM wp_comments WHERE comment_approved = '0'
DELETE FROM wp_comments WHERE comment_approved = '0'
So… I found this solution: http://stuff24.de/blog/delete-all-one-word-wordpress-comments-at-once/
The topic ‘Delete all one-word comments’ is closed to new replies.
(@acy)
13 years, 3 months ago
I’m trying to delete all wordpress comments with only one word. I found this mysql query to delete all comments at once, but that’s not what I want to achieve:
DELETE FROM wp_comments WHERE comment_approved = '0'