add_section('atlanta-footer_info', array( 'title' => __('Footer Section', 'atlanta'), 'description' => '', 'priority' => 170 ) ); $wp_customize->add_setting('atlanta_footer_section_hideshow', array( 'default' => true, 'sanitize_callback' => 'atlanta_customizer_sanitize_checkbox', ) ); $wp_customize->add_control('atlanta_footer_section_hideshow', array( 'type' => 'checkbox', 'label' => __('Footer Show/hide Option', 'atlanta'), 'description' => '', 'section' => 'atlanta-footer_info', 'priority' => 1 ) ); $wp_customize->add_setting('atlanta-footer_title', array( 'default' => '', 'type' => 'theme_mod', 'sanitize_callback' => 'wp_kses_post' ) ); $wp_customize->add_control('atlanta-footer_title', array( 'label' => __('Copyright', 'atlanta'), 'section' => 'atlanta-footer_info', 'type' => 'textarea', 'priority' => 1 ) );