【发布时间】:2014-05-09 10:27:58
【问题描述】:
您好,我需要一些帮助来自动选中我所做的复选框。我正在使用此代码在 Woocommerce 的结帐中插入复选框。
我可以使用什么代码来选中复选框?
// Our hooked in function - $fields is passed via the filter!
function custom_override_checkout_fields( $fields ) {
$fields['billing']['mc4wp-try-subscribe'] = array(
'label' => __('Newsletter', 'woocommerce'),
'type'=> 'checkbox',
'required' => false,
'checked' => true,
'value' => '1',
'class' => array('form-row-wide'),
);
return $fields;
}
【问题讨论】: