ヴぁー

コメント欄のメール項目の必須をはずしました
これぐらいデフォルトでできるようにしておいてほしいもんだ・・・

PHPファイルの方を直接いじってます

wordpress直下のwp-comments-post.php内
if ( get_option(’require_name_email’) && !$user->ID ) {
if ( 6 > strlen($comment_author_email) || ‘ == $comment_author )
wp_die( __(’Error: please fill the required fields (name, email).’) );
elseif ( !is_email($comment_author_email))
wp_die( __(’Error: please enter a valid email address.’) );
}

こんなのがあるのでメールフォームに6文字以内or無いとエラーをはずしました
if ( get_option(’require_name_email’) && !$user->ID ) {
if (/* 6 > strlen($comment_author_email) || */” == $comment_author )
wp_die( __(’Error: please fill the required fields (name, email).’) );
/*elseif ( !is_email($comment_author_email))
wp_die( __(’Error: please enter a valid email address.’) );*/
}

ついでにフォームの(必須)ってところはcomment-emailで全ファイル検索して適当にって感じです

コメントをどうぞ