A real ACF phone number field powered by libphonenumber and intl-tel-input
Install via Composer:
$ composer require log1x/acf-phone-number
Download the release .zip
and install into wp-content/plugins
.
Pretty straight forward usage. You can optionally set a default country.
Calling the field will return an arrayable object containing everything you need about your number:
^ array:10 [
"carrier" => ""
"country" => "United States"
"e164" => "+14058675309"
"international" => "+1 405-867-5309"
"location" => "Oklahoma"
"national" => "(405) 867-5309"
"rfc3966" => "tel:+1-405-867-5309"
"timezone" => array:1 [
0 => "America/Chicago"
]
"uri" => "tel:+14058675309"
]
If you are on Sage 10 and using my ACF Composer package:
$field
->addField('my_number_field', 'phone_number')
->setConfig('placeholder', '+1 555-555-5555')
->setConfig('default_country', 'us');
If you discover a bug in ACF Phone Number, please open an issue.
Contributing whether it be through PRs, reporting an issue, or suggesting an idea is encouraged and appreciated.
ACF Phone Number is provided under the MIT License.