gpt4 book ai didi

wordpress - 如何获得woocommerce国家选择下拉菜单?

转载 作者:行者123 更新时间:2023-12-03 18:09:48 24 4
gpt4 key购买 nike

我想在网站上显示 woocommerce 国家/地区列表。我怎样才能得到这样的国家名单作为图像?

enter image description here

最佳答案

是的,你可以通过在任何你想要的地方使用以下代码来实现这一点

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>';

我已经测试了相同的代码并在短代码中使用了相同的代码,并在产品描述中使用了该短代码

enter image description here

让我知道这是否也适用于您。

关于wordpress - 如何获得woocommerce国家选择下拉菜单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31046974/

24 4 0