Вот мой код:
$wp_customize->add_section('background_section', array(
'title' => 'Фоновое изображение',
'priority' => 30,
// 'panel' => 'background',
));
$wp_customize->add_setting('background_setting', array(
'default' => '',
));
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'background_setting', array(
'label' => 'Фоновая картинка',
'section' => 'background_section',
'settings' => 'background_setting',
)));
Но в кастомайзер не выводится меню с фоновый изображением
Я думаю, что как то не так использую WP_Customize_Background_Image_Control, потому что когда я вставляю WP_Customize_Image_Control все отлично работает.