remove_section( 'background_image' ); $wp_customize->add_panel( self::PANEL_ID, array( 'priority' => 10, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __( 'Background Images', 'ayyash' ), 'description' => '', ) ); /******************************** * // Background Images Section */ $section_id = 'bg_image_global'; $wp_customize->add_section( $section_id, array( 'title' => __( 'Global', 'ayyash' ), 'priority' => 35, 'capability' => 'edit_theme_options', 'panel' => self::PANEL_ID, ) ); $setting_id = 'bg_image_global_h1'; $wp_customize->add_control( new Themeoo_Customize_Misc_Control( $wp_customize, $setting_id, array( 'section' => $section_id, 'type' => 'heading', 'label' => __( 'Site', 'ayyash' ), ) ) ); $setting_id = 'bg_image_global_site'; $wp_customize->add_setting( $setting_id, array( 'default' => themeoo_get_default( $setting_id ), 'type' => 'theme_mod', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, $setting_id, array( 'label' => __( 'Background Image', 'ayyash' ), 'description' => __( 'This background image will be applied only if Boxed layout is selected.', 'ayyash' ), 'section' => $section_id, 'settings' => $setting_id, ) ) ); } }