How to Force Delete Comments
By default, WordPress moves deleted comments to the trash
Force Deleting Comments Through Code
<?php
/**
* Maybe delete a comment permanently if admin setting is on.
*
* @param int $comment_id The comment ID.
* @param WP_Comment $comment The comment object.
*/
function dlx_maybe_force_delete_comment( $comment, $comment_id ) {
wp_delete_comment( $comment_id, true );
return $comment;
}
add_filter( 'trashed_comment', 'dlx_maybe_force_delete_comment', 10, 2 );Force Deleting Spam Comment
Force Deleting Edited Comments
Force Deletion Without Code

Last updated

