add_panel( 'bizvilla_client_setting', array( 'priority' => 800, 'capability' => 'edit_theme_options', 'title' => __('Client Settings', 'bizvilla'), ) ); $wp_customize->add_section( 'client_section_settings', array( 'title' => __('Client section Heading','bizvilla'), 'panel' => 'bizvilla_client_setting',) ); $wp_customize->add_setting( 'bizvilla_options[cleint_upgrade]', array( 'default' => false, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_filter_nohtml_kses', )); $wp_customize->add_control( new bizvilla_Customize_client_upgrade( $wp_customize, 'bizvilla_options[cleint_upgrade]', array( 'label' => __('bizvilla Upgrade','bizvilla'), 'section' => 'client_section_settings', 'settings' => 'bizvilla_options[cleint_upgrade]', ) ) ); } add_action( 'customize_register', 'bizvilla_client_customizer' ); ?>