我有一个复选框,如果未选中则显示"未定义的索引" 我在这里搜索过,我发现了一些相似的答案,但我无法使其发挥作用。
这是我打印复选框输入的方式
printf(
'<input type="checkbox" id="custom_conversion_enable" name="conversion_settings_option_custom[custom_conversion_enable]" value="1" '. checked( 1, $this->options_custom['custom_conversion_enable'], false ) .' />',
isset( $this->options_custom['custom_conversion_enable'] ) ? esc_attr( $this->options_custom['custom_conversion_enable']) : ''
);
答案 0 :(得分:0)
Key是一个字符串,需要将其作为字符串发送回php。
name="conversion_settings_option_custom['custom_conversion_enable']"