我有一个定制的RadioControl,有3种选择:menu-left, menu-right, menu-top
. 我希望所选设置作为一个类添加到主体中,而其他设置将被删除。
Example
<body class="class1 menu-left">
将成为
<body class="class1 menu-right">
为了做到这一点,我想在预览中动态读取选项。然而wp.customize.control
在中排队的脚本中不起作用customize_preview_init
-行动
我很乐意:
const choices = Object.keys(wp.customize( controlKey ).params.choices).join(" ");
如何读取预览中的控件可用选项?