【发布时间】:2019-11-15 12:27:10
【问题描述】:
我想在没有插件的情况下验证“联系表格 7”印度 10 位电话号码验证。
下面是我在插件中使用的模式:
因此,在 Contact Form 7 formatting.php 模块中,我进行了这样的更改,但仍然无法验证:
function wpcf7_is_tel( $tel ) {
$result = preg_match( '/^[+]?[0-10() -]*$/', $tel );
return apply_filters( 'wpcf7_is_tel', $result, $tel );
}
【问题讨论】:
标签: wordpress