add_setting( 'base_color', array( 'default' => '#f39745', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'base_color', array( 'section' => 'colors', 'label' => __( 'Primary Color', 'blog-starter' ), ) ) ); /** Important Links */ $wp_customize->add_setting( 'pro_color_options', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $theme_info = '

'.__('Available Options In Pro Version', 'blog-starter').'

'; $wp_customize->add_control( new Blog_Starter_Note_Control( $wp_customize, 'pro_color_options', array( 'section' => 'colors', 'description' => $theme_info ) ) );