是的,您可以添加自己的自定义验证。更多信息here.
以下是一个适用于您的情况的行之有效的示例:
使用[text* your-website]
在您的联系人表单7表单中。
将此代码段添加到主题的函数中。php,使用child-theme!
add_filter( \'wpcf7_validate_text*\', \'custom_website_validation_filter\', 20, 2 );
function custom_website_validation_filter( $result, $tag ) {
if ( $tag->name == \'your-website\' ) {
$domain = isset( $_POST[\'your-website\'] ) ? trim( $_POST[\'your-website\'] ) : \'\';
if ( ! checkdnsrr($domain, \'ANY\') ) { // Check DNS records corresponding to a given Internet host name or IP address
$result->invalidate( $tag, "We cannot find an active dns record for that website url?" );
}
}
return $result;
}