我正在尝试使用联系表单7的内置验证方法来验证电话号码。
联系表单7标记:
<p>[number* your-telephone min:1000000000 max:9999999999 placeholder "Telephone number"] </p>
<p>[submit "submit"]</p>
所以,我在这里要做的是使用输入类型的数字的最小和最大属性来限制电话号码。但问题是,如果我输入一个电话号码:0402356584,那么它小于最小值,但仍然是电话号码。
那么,如何设置最小值和最大值以支持所有可能的10位数电话号码?
任何其他与我的方法不同的解决方案也是最受欢迎的。因为我觉得使用min和max属性无法完成验证。
我还尝试使用source中的代码通过functions.php文件编辑插件文件,但这些代码无效。
因此,如果任何人有完整的解决方案来验证联系表格7上的电话号码,那么请发布您的答案。
答案 0 :(得分:8)
您可以使用 [tel * tel-672] 字段,并根据您的要求通过 wpcf7_is_tel 过滤器来验证。
联系表单7 有许多预定义的挂钩,您可以通过它来验证任何字段。在Contact Form 7 formatting.php模块中,验证规则由以下方法定义。您可以覆盖它通过apply_filters中提到的过滤器钩子通过functions.php
function wpcf7_is_tel( $tel ) {
$result = preg_match( '/^[+]?[0-9() -]*$/', $tel );
return apply_filters( 'wpcf7_is_tel', $result, $tel );
}
请在您激活的主题文件夹中的functions.php中添加以下提到的代码,并将验证规则添加到$ result
// define the wpcf7_is_tel callback
function custom_filter_wpcf7_is_tel( $result, $tel ) {
$result = preg_match( '/^\(?\+?([0-9]{1,4})?\)?[-\. ]?(\d{10})$/', $tel );
return $result;
}
add_filter( 'wpcf7_is_tel', 'custom_filter_wpcf7_is_tel', 10, 2 );
您可以看到more
答案 1 :(得分:7)
尝试一下,肯定会按照contact form 7 documentation工作。
[number* your-telephone minlength:10 maxlength:140 placeholder "Telephone number"]
答案 2 :(得分:1)
function custom_phone_validation($result,$tag){ $type = $tag['type']; $name = $tag['name']; if($name == 'phonenumber'){ $phoneNumber = isset( $_POST['phonenumber'] ) ? trim( $_POST['phonenumber'] ) : ''; $the_value = preg_match("/your_reg_exp format for phone number/",$_POST[$name]); if($phoneNumber == "" || $the_value == false ){ $result->invalidate( $tag, "please enter vaild phone number" ); } } return $result; } add_filter('wpcf7_validate_tel','custom_phone_validation', 10, 2); add_filter('wpcf7_validate_tel*', 'custom_phone_validation', 10, 2);
phonenumber - &gt;字段名称
尝试使用function.php文件。
过滤:https://plugins.trac.wordpress.org/browser/contact-form-7/trunk/modules/text.php wpcf7_validate_tel
使用函数wpcf7_validate_tel( $result, $tag )
答案 3 :(得分:1)
我认为我有很好的解决方法...
默认情况下,数字字段没有最小长度和最大长度验证器。 您可以从wp-content / plugins / contact-form-7 / modules / text.php复制它们
$atts['maxlength'] = $tag->get_maxlength_option();
$atts['minlength'] = $tag->get_minlength_option();
(在wpcf7_text_form_tag_handler函数中)...和验证过滤器
$code_units = wpcf7_count_code_units( stripslashes( $value ) );
if ( $maxlength && $maxlength < $code_units ) {
$result->invalidate( $tag, wpcf7_get_message( 'invalid_too_long' ) );
} elseif ( $minlength && $code_units < $minlength ) {
$result->invalidate( $tag, wpcf7_get_message( 'invalid_too_short' ) );
}
(在wpcf7_text_validation_filter函数中)
现在将其粘贴到正确位置的numbers.php中。 因此,在wpcf7_number_form_tag_handler函数中,atts看起来像:
$atts['class'] = $tag->get_class_option( $class );
$atts['id'] = $tag->get_id_option();
$atts['tabindex'] = $tag->get_option( 'tabindex', 'signed_int', true );
$atts['min'] = $tag->get_option( 'min', 'signed_int', true );
$atts['max'] = $tag->get_option( 'max', 'signed_int', true );
$atts['step'] = $tag->get_option( 'step', 'int', true );
$atts['maxlength'] = $tag->get_maxlength_option();
$atts['minlength'] = $tag->get_minlength_option();
和wpcf7_number_validation_filter函数结尾为:
if ( $tag->is_required() && '' == $value ) {
$result->invalidate( $tag, wpcf7_get_message( 'invalid_required' ) );
} elseif ( '' != $value && ! wpcf7_is_number( $value ) ) {
$result->invalidate( $tag, wpcf7_get_message( 'invalid_number' ) );
} elseif ( '' != $value && '' != $min && (float) $value < (float) $min ) {
$result->invalidate( $tag, wpcf7_get_message( 'number_too_small' ) );
} elseif ( '' != $value && '' != $max && (float) $max < (float) $value ) {
$result->invalidate( $tag, wpcf7_get_message( 'number_too_large' ) );
} elseif ( $maxlength && $maxlength < $code_units ) {
$result->invalidate( $tag, wpcf7_get_message( 'invalid_too_long' ) );
} elseif ( $minlength && $code_units < $minlength ) {
$result->invalidate( $tag, wpcf7_get_message( 'invalid_too_short' ) );
}
return $result;
答案 4 :(得分:0)
这适用于电话类型字段。如果您想使用数字或文本字段,则需要更改&#39; wpcf7_validate_tel&#39;在过滤器参数和代码中。
function custom_phone_validation($result,$tag){
$type = $tag->type;
$name = $tag->name;
if($type == 'tel' || $type == 'tel*'){
$phoneNumber = isset( $_POST[$name] ) ? trim( $_POST[$name] ) : '';
$phoneNumber = preg_replace('/[() .+-]/', '', $phoneNumber);
if (strlen((string)$phoneNumber) != 10) {
$result->invalidate( $tag, 'Please enter a valid phone number.' );
}
}
return $result;
}
add_filter('wpcf7_validate_tel','custom_phone_validation', 10, 2);
add_filter('wpcf7_validate_tel*', 'custom_phone_validation', 10, 2);
答案 5 :(得分:0)
试试这个:
[tel your-phone minlength:10 maxlength:140]
祝你好运!!
chucha!
答案 6 :(得分:0)
就我而言,以下代码有效。 重要的一点是,输入类型应为“ tel”,如下所示。
[tel your-telephone minlength:1 maxlength:10]