Gravity Forms提供了强大的表单系统,但是它的电话号码格式却没有11位手机号码的格式,虽然我们可以用International这个选项代替(就是不限制格式),但终归不够完美。查了一下官方文档,把这个需求给填上吧。
直接上代码:
add_filter( 'gform_phone_formats', 'brain1981_phone_format' ); function brain1981_phone_format( $phone_formats ) { $phone_formats['china mobile'] = array( 'label' => '手机号码', 'mask' => false, 'regex' => '/^1(?:3\d|4[4-9]|5[0-35-9]|6[67]|7[013-8]|8\d|9\d)\d{8}$/', //手机号码正则 'instruction' => "11位手机号码", ); return $phone_formats; } |