add_section( 'hero_text', array( 'title' => esc_html__('Hero Text', 'calico'), 'panel' => '', // Not typically needed. 'priority' => 160, 'capability' => 'edit_theme_options', ) ); // add theme mod for text $wp_customize->add_setting('hero_text', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => esc_html__('Just another WordPress site', 'calico'), 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field' ) ); // add text box for hero text $wp_customize->add_control( 'hero_text', // Setting id array( // Args, including any custom ones. 'type' => 'text', 'priority' => 10, // Within the section. 'section' => 'header_image', // Required, core or custom. 'label' => esc_html__('Hero Text', 'calico'), 'input_attrs' => array( 'class' => 'hero-text', 'placeholder' => esc_html__('Just another WordPress site', 'calico'), ) ) ); } } }