【发布时间】:2018-06-02 07:49:57
【问题描述】:
我需要让woocommerce电话号码以+370开头...我试过这个功能:
add_action('woocommerce_checkout_update_order_meta', 'dd_Testval');
function dd_Testval() {
$billing_phone = filter_input(INPUT_POST, 'billing_phone');
if (strlen(trim(preg_replace('[\+]\d{2}[\(]\d{2}[\)]\d{4}[\-]\d{4}', '', $billing_phone))) > 0) {
wc_add_notice(__('Invalid <strong>Phone Number</strong>, please check your input.'), 'error');
}
}
没有效果。
有什么建议吗?
【问题讨论】:
标签: php regex wordpress woocommerce checkout