add_section( 'alley_themes_header_script_section', array( 'title' => esc_html__( 'Header Scripts', 'alley-themes' ), 'panel' => 'alley_themes_header_panel', ) ); $wp_customize->add_setting( 'header_script_section', array( 'sanitize_callback' => 'wp_kses_post', 'default' => '', ) ); $wp_customize->add_control( 'header_script_section', array( 'label' => esc_html__( 'This code will output immediately before the closing tag in document source', 'alley-themes' ), 'section' => 'alley_themes_header_script_section', 'settings' => 'header_script_section', 'type' => 'textarea', 'input_attrs' => array( 'placeholder' => __( '','alley-themes' ), ), ) ); }