mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/65705051/remove-first-zero-from-billing-phone-number-after-registration
5 lines
214 B
Text
5 lines
214 B
Text
function removezero( $user_id ) {
|
|
if (isset($_POST['billing_phone'])) {
|
|
update_user_meta( $user_id, 'billing_phone', $_POST['billing_phone'] = preg_replace('/^0/', '', $_POST['billing_phone']));
|
|
}
|
|
}
|