我有一个收音机和一个图像设置功能。php:
Spotlight_Kirki::add_field( \'spotlight_config\', array(
\'type\' => \'radio\',
\'settings\' => \'spotlight_layout_type\',
\'label\' => esc_html__( \'Layout Type\' , \'spotlight\' ),
\'section\' => \'spotlight_general\',
\'default\' => \'layout_dark\',
\'priority\' => 0,
\'choices\' => array(
\'dark\' => esc_html__( \'Dark version\', \'spotlight\' ),
\'light\' => esc_html__( \'Light version\', \'spotlight\' ),
\'coloured\' => esc_html__( \'Coloured version\', \'spotlight\' ),
),
) );
if ( get_theme_mod( \'spotlight_layout_type\', \'\' ) != \'coloured\' ) {
Spotlight_Kirki::add_field( \'spotlight_config\', array(
\'type\' => \'image\',
\'settings\' => \'spotlight_bg_image\',
\'label\' => esc_html__( \'Background Image\' , \'spotlight\' ),
\'section\' => \'spotlight_general\',
\'default\' => esc_html__( \'\', \'spotlight\' ),
\'priority\' => 0
) );
}
如您所见,我尝试启用spotlight_bg_image
仅当前一个收音机框设置为coloured
. 然而,当我选择一个时,它并没有隐藏起来。任何帮助都将不胜感激。