add_panel( 'appearance_settings', array( 'title' => __( 'Appearance Settings', 'blossom-floral-pro' ), 'priority' => 25, 'capability' => 'edit_theme_options', 'description' => __( 'Change color and body background.', 'blossom-floral-pro' ), ) ); /** Move Background Image section to appearance panel */ $wp_customize->get_section( 'colors' )->panel = 'appearance_settings'; $wp_customize->get_section( 'colors' )->priority = 30; $wp_customize->get_section( 'background_image' )->panel = 'appearance_settings'; $wp_customize->get_section( 'background_image' )->priority = 35; $wp_customize->get_section( 'background_image' )->title = __( 'Background', 'blossom-floral-pro' ); $wp_customize->get_control( 'background_image' )->active_callback = 'blossom_floral_pro_body_bg_choice'; $wp_customize->get_control( 'background_preset' )->active_callback = 'blossom_floral_pro_body_bg_choice'; $wp_customize->get_control( 'background_position' )->active_callback = 'blossom_floral_pro_body_bg_choice'; $wp_customize->get_control( 'background_size' )->active_callback = 'blossom_floral_pro_body_bg_choice'; $wp_customize->get_control( 'background_repeat' )->active_callback = 'blossom_floral_pro_body_bg_choice'; $wp_customize->get_control( 'background_attachment' )->active_callback = 'blossom_floral_pro_body_bg_choice'; } add_action( 'customize_register', 'blossom_floral_pro_customize_register_appearance' );