Last active
May 27, 2020 03:14
-
-
Save sabrina-zeidan/907b576d47589901c5a1a9549a1dcb2a to your computer and use it in GitHub Desktop.
Bulk delete all comments [Wordpress]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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