add_section('section_footer', array( 'title' => __('Footer Option', 'akisa'), 'panel' => 'theme_option_panel' ) ); // Setting copyright_text. $wp_customize->add_setting( 'theme_options[copyright_text]', array( 'default' => $default['copyright_text'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'akisa_sanitize_textarea_content', 'transport' => 'postMessage', ) ); $wp_customize->add_control( 'theme_options[copyright_text]', array( 'label' => __( 'Copyright Text', 'akisa' ), 'section' => 'section_footer', 'type' => 'text', 'priority' => 10, ) ); // scroll top visible $wp_customize->add_setting( 'theme_options[scroll_top_visible]', array( 'default' => $default['scroll_top_visible'], 'sanitize_callback' => 'akisa_sanitize_switch_control', ) ); $wp_customize->add_control( new Akisa_Switch_Control( $wp_customize, 'theme_options[scroll_top_visible]', array( 'label' => esc_html__( 'Display Scroll Top Button', 'akisa' ), 'section' => 'section_footer', 'on_off_label' => akisa_switch_options(), 'priority' =>20, ) ) ); ?>