// Contact Form 7 スパムメール対策(本文に日本語が含まれていない場合はエラーを返す) function wpcf7_validate_spam_message( $result, $tag ) { $value = str_replace(array(PHP_EOL,' '), '', esc_attr($_POST['your-message'])); if (!empty($value)) { if (preg_match('/^[!-~]+$/', $value)) { $result['valid'] = false; $result['reason'] = array('your-message' => 'エラー:この内容は送信できません'); } } return $result; } add_filter( 'wpcf7_validate', 'wpcf7_validate_spam_message', 10, 2 ); | 新木場相原

最新情報

TOP