📜  更改初始国家 + 在 Caldera 表单上添加顶级国家 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:50.489000             🧑  作者: Mango

代码示例1
/**
 * Change default country on Caldera forms
 */
add_filter( 'caldera_forms_phone_js_options', function( $options){
    //Use ISO_3166-1_alpha-2 formatted country code
    $options[ 'initialCountry' ] = 'ZA';
    $options[ 'preferredCountries' ] = array( 'ZA', 'SWZ', 'LSO' );
    return $options;
});