add_panel( 'Shortcode_panel', array( 'title' => __( 'Shortcode Option','businessmax' ), 'priority' => 1, // Mixed with top-level-section hierarchy. ) ); $wp_customize->add_section('shortcode_sec',array( 'title' => __( 'Home Shortcode','businessmax' ), 'panel'=>'Shortcode_panel', 'capability'=>'edit_theme_options', 'priority' => 37, )); /**shortcode start***/ $wp_customize->add_setting('busmax_default_setting[home_shortcode]',array( 'type'=>'option', 'default'=>$busmax_default_setting['home_shortcode'], 'sanitize_callback'=>'sanitize_text_field', 'capability' => 'edit_theme_options', )); $wp_customize->add_control( 'busmax_default_setting[home_shortcode]', array( 'label' => __( 'Home Shortcode', 'businessmax' ), 'type'=>'textarea', 'section' => 'shortcode_sec', 'settings' => 'busmax_default_setting[home_shortcode]', )); ?>