Author URI: http://dgk.or.id Howto Install this plugin 1. Upload this plugin to wp-contents/plugins/ 2. Activate this plugin on the dashboard 3. add this function on wp-comments-post.php after $comment_post_ID = (int) $_POST['comment_post_ID']; CheckThisOut(); 4. DONE! */ /* replace this variable */ $VarSpam = "GetLostSpammer"; function ThisIsNotSpam() { Global $VarSpam; echo "This is not spam"; } function CheckThisOut() { Global $VarSpam; if($_POST[$VarSpam] <> "on") { wp_die( __('Error: go die spammer!') ); } } add_action('comment_form', 'ThisIsNotSpam');