我有以下功能将选择列表添加到woo-commerce结帐表单:
woocommerce_form_field( 'airport_pickup', array(
'type' => 'select',
'class' => array('airport_pickup form-row-wide'),
'label' => __('Would you like us to arrange transportation from the airport to your starting hotel?'),
'required' => true,
'options' => array(
'Y' => __('YES'),
'N' => __('NO')
)), $checkout->get_value( 'airport_pickup' ));
Run Code Online (Sandbox Code Playgroud)
我想默认选择'NO'选项.请建议.怎么做?