Skip to content

Instantly share code, notes, and snippets.

@sabrina-zeidan
Last active May 27, 2020 03:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sabrina-zeidan/907b576d47589901c5a1a9549a1dcb2a to your computer and use it in GitHub Desktop.
Save sabrina-zeidan/907b576d47589901c5a1a9549a1dcb2a to your computer and use it in GitHub Desktop.
Bulk delete all comments [Wordpress]
function bulk_delete_comments(){
$args = array('fields' => 'ids','number' => '','status' => 'all');
$comments = get_comments( $args );
foreach ($comments as $comment) {
wp_delete_comment( $comment, true);
}
}
add_action( 'wp_head', 'bulk_delete_comments' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment