wordpress - How to get woocommerce country select dropdown? -
i want display woocommerce countries list on website. how can country list image?
yes can achieve having following code ever want
global $woocommerce; $countries_obj = new wc_countries(); $countries = $countries_obj->__get('countries'); echo '<div id="my_custom_countries_field"><h2>' . __('countries') . '</h2>'; woocommerce_form_field('my_country_field', array( 'type' => 'select', 'class' => array( 'chzn-drop' ), 'label' => __('select country'), 'placeholder' => __('enter something'), 'options' => $countries ) ); echo '</div>';
i have tested same , have used same code in shortcode , used shortcode on product description
let me know if works too.
Comments
Post a Comment