Kill All Comments

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


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