add_section('section_footer', array( 'title' => __('Footer Option', 'businesstar'), 'panel' => 'theme_option_panel' ) ); // Setting copyright_text. $wp_customize->add_setting( 'theme_options[copyright_text]', array( 'default' => $businesstar_default['copyright_text'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'businesstar_sanitize_textarea_content', 'transport' => 'postMessage', ) ); $wp_customize->add_control( 'theme_options[copyright_text]', array( 'label' => __( 'Copyright Text', 'businesstar' ), 'section' => 'section_footer', 'type' => 'text', 'priority' => 10, ) ); ?>