如何在类型复选框Visual Composer短代码中设置多个默认值?

时间:2016-11-17 10:24:17

标签: visual-composer

我在这里有代码复选框:

array(
        "type"        => "checkbox",
        "heading"     => esc_html__( 'Theme Data', 'my-theme' ),
        "param_name"  => "pr_name",
        "admin_label" => true,
        "value"       => array(
            esc_html__( 'Department', 'my-theme' ) => 'department',
            esc_html__( 'Salarry', 'my-theme' ) => 'salarry',
            esc_html__( 'Address', 'my-theme' ) => 'address',
            esc_html__( 'Degree', 'my-theme' ) => 'degree',
            esc_html__( 'Work time', 'my-theme' ) => 'time',
            esc_html__( 'End time', 'my-theme' ) => 'enddate'
        ),
        'std' => array('department', 'salarry'),
    );

是的,此代码无效。如何检查默认值为:departmentsalarry

哪里错了?请帮帮我。

1 个答案:

答案 0 :(得分:1)

你可以使用'部门,salarry'作为' std'的价值键。

'std' => 'department,salarry',