我有以下功能在 woocommerce 结帐表单中添加一个复选框:
woocommerce_form_field( 'email_signup', array(
'type' => 'checkbox',
'class' => array('input-checkbox'),
'label' => __('Newsletter Signup?'),
), $checkout->get_value( 'email_signup' ));
我想让复选框默认选中。有没有办法通过 woocommerce form_field 选项来做到这一点?或者我需要使用javascript吗?