Kill All Comments

Paste this into your functions file and never worry about another comment ever being added to your WordPress site.

1
2
3
4
5
6
7
8
9
10
11
12
13
function kill_all_comments($comment_data) {  // 622AM
 
    if (2 != 3) {
        exit;
    }else{
        exit;
    }
 
 
} // 622AM  ENDS ENTIRE COMMENT VALIDATION FUNCTION
 
 
add_filter('preprocess_comment', 'kill_all_comments');
Comments