add_section('bizstart-footer_info', array( 'title' => __('Footer Section', 'bizstart'), 'description' => '', 'panel' => 'frontpage', 'priority' => 170 )); $wp_customize->add_setting( 'bizstart_footer_section_hideshow', array( 'default' => 'show', 'sanitize_callback' => 'bizstart_footer_sanitize_select', ) ); $bizstart_footer_section_hide_show_option = bizstart_footer_section_option(); $wp_customize->add_control( 'bizstart_footer_section_hideshow', array( 'type' => 'radio', 'label' => esc_html__('Footer Option', 'bizstart'), 'description' => esc_html__('Show/hide option for Footer Section.', 'bizstart'), 'section' => 'bizstart-footer_info', 'choices' => $bizstart_footer_section_hide_show_option, 'priority' => 1 ) ); $wp_customize->add_setting('bizstart-footer_title', array( 'default' => '', 'type' => 'theme_mod', 'sanitize_callback' => 'wp_kses_post' )); $wp_customize->add_control('bizstart-footer_title', array( 'label' => __('Copyright', 'bizstart'), 'section' => 'bizstart-footer_info', 'type' => 'textarea', 'priority' => 1 )); ?>