get_section( 'colors' )->title = esc_html__( 'Colors and Fonts', 'bootstrap-blog' ); $wp_customize->get_section( 'colors' )->priority = 1; $wp_customize->get_section( 'colors' )->panel = 'bootstrap_blog_general_panel'; } add_action( 'customize_register', 'bootstrap_blog_customize_color_options' ); function bootstrap_blog_customize_color_options( $wp_customize ) { $wp_customize->add_setting( 'more_color_options', array( 'sanitize_callback' => 'sanitize_text_field', 'default' => '', ) ); $wp_customize->add_control( new Bootstrap_Blog_Custom_Text( $wp_customize, 'more_color_options', array( 'label' => esc_html__( 'Upgrade to Pro for More Color Options.', 'bootstrap-blog' ), 'section' => 'colors', 'settings' => 'more_color_options', 'type' => 'customtext', ) ) ); }