Jag*_*mar 3 wordpress e-commerce woocommerce
我想在网站上显示一些woocommerce国家列表.我怎么能得到这样的国家名单作为图像?

Wis*_*abs 13
是的,您可以通过在任何需要的地方使用以下代码来实现此目的
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 a country'),
'placeholder' => __('Enter something'),
'options' => $countries
)
);
echo '</div>';
Run Code Online (Sandbox Code Playgroud)
我已对其进行了测试,并在短代码中使用了相同的代码,并在产品说明中使用了该短代码

如果这对您有用,请告诉我.
小智 7
这是非常简单和缩小的代码:
global $woocommerce;
woocommerce_form_field( 'billing_country', array( 'type' => 'country' ) );
Run Code Online (Sandbox Code Playgroud)