add_section( 'business_center_pro_loader', array( 'title' => esc_html__( 'Loader','business-center-pro' ), 'description' => esc_html__( 'Loader section options.', 'business-center-pro' ), 'panel' => 'business_center_pro_theme_options_panel' ) ); // Loader enable setting and control. $wp_customize->add_setting( 'business_center_pro_theme_options[loader_enable]', array( 'sanitize_callback' => 'business_center_pro_sanitize_checkbox', 'default' => $options['loader_enable'] ) ); $wp_customize->add_control( 'business_center_pro_theme_options[loader_enable]', array( 'label' => esc_html__( 'Enable loader', 'business-center-pro' ), 'section' => 'business_center_pro_loader', 'type' => 'checkbox', ) ); // Loader icons setting and control. $wp_customize->add_setting( 'business_center_pro_theme_options[loader_icon]', array( 'sanitize_callback' => 'sanitize_text_field', 'default' => $options['loader_icon'], ) ); $wp_customize->add_control( 'business_center_pro_theme_options[loader_icon]', array( 'label' => esc_html__( 'Icon', 'business-center-pro' ), 'description' => sprintf( esc_html__( 'Example fa-refresh see more at %1$s Font awesome %2$s.', 'business-center-pro' ), '', '' ), 'section' => 'business_center_pro_loader', 'active_callback' => 'business_center_pro_is_loader_enable', ) );