【问题标题】:WooCommerce radio option checked by defaultWooCommerce 单选选项默认选中
【发布时间】:2022-01-01 00:58:02
【问题描述】:

Here is the answer 用于复选框,但我找不到单选按钮。

例如,我有 2 个选项单选,我想默认选中第一个选项。

'type'  => 'radio',
'class' => array('box form-row-wide'),
'options' => array(
    'default'  => 'Default option',
    'other'    => 'Other option',
  ),

在哪里添加 $checked 以便默认检查第一个选项(默认选项)?

谢谢。

【问题讨论】:

    标签: wordpress woocommerce radio-button


    【解决方案1】:

    我刚刚想通了。这是答案。

    'type'  => 'radio',
    'class' => array('box form-row-wide'),
    'options' => array(
    'default1'  => 'Default option',
    'other2'    => 'Other option',
    ),
    'default' => 'default1' ,
    

    所以它是'默认' => '你要检查的选项',

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2017-12-18
      • 2018-05-29
      • 1970-01-01
      • 2019-08-25
      • 2017-10-02
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多