How to get woocommerce country select dropdown?

前端 未结 3 2015
刺人心
刺人心 2021-02-10 23:05

I want to display woocommerce countries list some where on website. how can i get the country list like this as image?

3条回答
  •  没有蜡笔的小新
    2021-02-10 23:51

    You can add this to your function.php if you want custom country :

    add_filter( 'woocommerce_checkout_fields', 'add_custom_select_country' );
    function add_custom_select_country( $fields ) {
        $fields['billing']['billing_select_country'] = array(
            'type'      => 'select',
            'required'  => true,
            'clear'     => false,
            'options'   => array(
            'country'   => __('Country', 'woocommerce' ),
            'fr'        => __('France', 'woocommerce' ),
            'gb'        => __('United Kingdom', 'woocommerce' ),
            'ru'        => __('Russian', 'woocommerce' )
        )
    );
    return $fields;
    }
    

提交回复
热议问题