Skip to content

Instantly share code, notes, and snippets.

@denisstoyanov
Created November 6, 2015 08:48
Show Gist options
  • Save denisstoyanov/1f2c896d8e6f3e519606 to your computer and use it in GitHub Desktop.
Save denisstoyanov/1f2c896d8e6f3e519606 to your computer and use it in GitHub Desktop.
Deletes all comments
<?php
function delete_all_comments() {
$comments = get_comments();
foreach($comments as $comment) {
wp_delete_comment($comment->comment_ID, true);
}
}
delete_all_comments()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment