get_section( 'colors' )->title = esc_html__('Colors Settings', 'business-roy'); $wp_customize->get_section( 'colors' )->priority = 4; $wp_customize->add_setting('businessroy_primary_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control('businessroy_primary_color', array( 'type' => 'color', 'label' => esc_html__('Primary Color', 'business-roy'), 'section' => 'colors', )); $wp_customize->add_setting('content_widget_background', array( 'sanitize_callback' => 'ikreate_themes_sanitize_color_alpha', )); $wp_customize->add_control(new Ikreate_Alpha_Color_Control($wp_customize, "content_widget_background", array( 'section' => "colors", 'label' => esc_html__('Widget Background', 'business-roy') ))); $wp_customize->add_setting('businessroy_pro_advance_color', array( 'sanitize_callback' => 'businessroy_sanitize_text' )); $wp_customize->add_control(new Ikreate_Themes_Upgrade_Text($wp_customize, 'businessroy_pro_advance_color', array( 'section' => 'colors', 'label' => esc_html__('For More Settings,', 'business-roy'), 'choices' => array( esc_html__('H1 To H6 Color Options', 'business-roy'), esc_html__('Link Color', 'business-roy'), esc_html__('Link Hover Color', 'business-roy'), esc_html__('More Color Options', 'business-roy'), ), 'priority' => 251, )));