'edit_theme_options', 'option_type' => 'theme_mod', ) ); Kirki::add_panel( 'customizer_panel_id', array( 'priority' => 10, 'title' => esc_html__( 'Theme Option', 'bsquare' ), 'description' => esc_html__( 'My panel description', 'bsquare' ), ) ); // Banner section start Kirki::add_section( 'customizer_section_one', array( 'title' => esc_html__( 'Banner section', 'bsquare' ), 'description' => esc_html__( 'My section description.', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); Kirki::add_field( 'customizer_section_one', array( 'type' => 'link', 'settings' => 'my_vdd', 'label' => __( 'Banner vedio link', 'bsquare' ), 'description' => __( 'only past vemio vedio link', 'bsquare' ), 'section' => 'customizer_section_one', 'default' => 'https://vimeo.com/211465620', 'priority' => 10, 'partial_refresh' => array( 'my_vd' => array( 'selector' => '.video', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'my_vd' )); }, ), ), ) ); Kirki::add_field( 'customizer_section_one', array( 'type' => 'text', 'settings' => 'msy_setting', 'label' => __( 'Banner title', 'bsquare' ), 'section' => 'customizer_section_one', 'default' =>'', 'priority' => 10, 'partial_refresh' => array( 'msy_setting' => array( 'selector' => '.support', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'msy_setting' )); }, ), ), ) ); Kirki::add_field( 'customizer_section_one', array( 'type' => 'text', 'settings' => 'my_subtitle', 'label' => __( 'Banner Subtitle', 'bsquare' ), 'section' => 'customizer_section_one', 'default' =>'', 'priority' => 10, 'partial_refresh' => array( 'my_subtitle' => array( 'selector' => '.subtitle', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'my_subtitle' )); }, ), ), ) ); Kirki::add_field( 'customizer_section_one', array( 'type' => 'text', 'settings' => 'banner_vd', 'label' => __('Video Switch Title', 'bsquare' ), 'section' => 'customizer_section_one', 'default' =>'', 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_one', array( 'type' => 'switch', 'settings' => 'ban_swt', 'label' => __( 'Bannner Video Switch', 'bsquare' ), 'section' => 'customizer_section_one', 'priority' => 10, 'default' => '0', 'priority' => 10, 'choices' => [ 'on' => esc_attr__( 'ON', 'bsquare' ), 'off' => esc_attr__( 'OFF', 'bsquare' ), ], ) ); Kirki::add_field( 'customizer_section_one', array( 'type' => 'text', 'settings' => 'banner_extr', 'label' => __('Menu Extra ID', 'bsquare' ), 'section' => 'customizer_section_one', 'default' =>'', 'priority' => 10, ) ); // Banner section End //Service section start Kirki::add_section( 'customizer_section_two', array( 'title' => esc_html__( 'Service section', 'bsquare' ), 'description' => esc_html__( 'Service section', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); // Repeater Setting Kirki::add_field( 'customizer_section_two', array( 'type' => 'repeater', 'label' => esc_html__( 'Services', 'bsquare' ), 'section' => 'customizer_section_two', 'priority' => 10, 'partial_refresh' => array( 'customizer_section_two' => array( 'selector' => '.card-one', 'render_callback' => function() { return get_theme_mod('customizer_section_two'); }, ), ), 'choices' => array( 'limit' => 3 ), 'row_label' => array( 'type' => 'field', 'value' => esc_html__('service', 'bsquare' ), 'field' => 'service_title', ), 'settings' => 'customizer_section_two', // Defining Pre-Made Repeater Fields 'fields' => array( 'service_image' => array( 'type' => 'text', 'label' => esc_html__( 'font-awesome icon like: fas fa-layer-group', 'bsquare' ), 'default' => '', ), 'service_title' => array( 'type' => 'text', 'label' => esc_html__( 'Service Title', 'bsquare' ), 'default' => '', ), 'service_subtile' => array( 'type' => 'textarea', 'label' => esc_html__( 'Service Subtitle', 'bsquare' ), 'default' => '', ), 'service_btn' => array( 'type' => 'text', 'label' => esc_html__( 'Service Button Text', 'bsquare' ), 'default' => '', ), 'service_btn_lnk' => array( 'type' => 'text', 'label' => esc_html__( 'Service Button Link', 'bsquare' ), 'default' => '', ), ) ) ); //Service section end // counter section start Kirki::add_section( 'customizer_section_three', array( 'title' => esc_html__( 'counter section', 'bsquare' ), 'description' => esc_html__( 'My counter section.', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); Kirki::add_field( 'customizer_section_three', array( 'type' => 'image', 'settings' => 'quote_bg', 'label' => __( 'Upload your Background Image', 'bsquare' ), 'section' => 'customizer_section_three', 'priority' => 10, 'default' => '' , ) ); Kirki::add_field( 'customizer_section_three', array( 'type' => 'text', 'settings' => 'Quote_title', 'label' => __( 'Quote Title', 'bsquare' ), 'section' => 'customizer_section_three', 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_three', array( 'type' => 'text', 'settings' => 'Quote_subtitle', 'label' => __( 'Quote subtitle', 'bsquare' ), 'section' => 'customizer_section_three', 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_three', array( 'type' => 'textarea', 'settings' => 'counter_form', 'label' => __( 'counter section form shortcode', 'bsquare' ), 'section' => 'customizer_section_three', 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_three', array( 'type' => 'text', 'settings' => 'cgounter_tilte', 'label' => __( 'Write Your Counter Section Title', 'bsquare' ), 'section' => 'customizer_section_three', 'default' => esc_html__( 'Write Your Counter Section Title', 'bsquare' ), 'priority' => 10, 'partial_refresh' => array( 'counter_tilte' => array( 'selector' => '.rasub', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'counter_tilte' )); }, ), ), ) ); Kirki::add_field( 'customizer_section_three', array( 'type' => 'textarea', 'settings' => 'cgounter_subtitle', 'label' => __( 'Write Your Counter Section Subtitle', 'bsquare' ), 'section' => 'customizer_section_three', 'default' => esc_html__( 'Write Your Counter Section Subtitle', 'bsquare' ), 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_three', array( 'type' => 'editor', 'settings' => 'counter_des', 'label' => __( 'Write Your Counter Section Description', 'bsquare' ), 'section' => 'customizer_section_three', 'default' => esc_html__( 'Write Your Counter Section Description', 'bsquare' ), 'priority' => 10, ) ); // Repeater Setting Kirki::add_field( 'customizer_section_three', array( 'type' => 'repeater', 'label' => esc_html__( 'counter', 'bsquare' ), 'section' => 'customizer_section_three', 'priority' => 10, 'partial_refresh' => array( 'customizer_section_three' => array( 'selector' => '.racount', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'customizer_section_three' )); }, ), ), 'choices' => array( 'limit' => 4 ), 'row_label' => array( 'type' => 'field', 'value' => esc_html__('counter', 'bsquare' ), 'field' => 'counter_title', ), 'settings' => 'customizer_section_three', // Defining Pre-Made Repeater Fields 'fields' => array( 'counter_title' => array( 'type' => 'text', 'label' => esc_html__( 'counter Value input', 'bsquare' ), 'description' => esc_html__( 'This will be the title of your counter', 'bsquare' ), 'default' => '', ), 'counter_sub' => array( 'type' => 'textarea', 'label' => esc_html__( 'counter Text', 'bsquare' ), 'description' => esc_html__( 'This will be the text displayed below the service title', 'bsquare' ), 'default' => '', ), ) ) ); Kirki::add_field( 'customizer_section_three', array( 'type' => 'text', 'settings' => 'coun_extra', 'label' => __( 'counter Menu Extra ID', 'bsquare' ), 'section' => 'customizer_section_three', 'default' =>'', 'priority' => 10, ) ); // counter section end // project section start Kirki::add_section( 'customizer_section_four', array( 'title' => esc_html__( 'project section', 'bsquare' ), 'description' => esc_html__( 'My project section.', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); Kirki::add_field( 'customizer_section_four', array( 'type' => 'text', 'settings' => 'pgroject_subheading', 'label' => __( 'Write Your Section Subheading', 'bsquare' ), 'section' => 'customizer_section_four', 'default' => esc_html__('Write Your Section Subheading', 'bsquare' ), 'priority' => 10, 'partial_refresh' => array( 'my_project' => array( 'selector' => '.projecsub', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'my_project' )); }, ), ), ) ); Kirki::add_field( 'customizer_section_four', array( 'type' => 'text', 'settings' => 'pgroject_title', 'label' => __( 'Write Your Section Title', 'bsquare' ), 'section' => 'customizer_section_four', 'default' => esc_html__( 'Write Your Section Title', 'bsquare' ), 'priority' => 10, 'partial_refresh' => array( 'project_tit' => array( 'selector' => '.Projecttit', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'project_tit' )); }, ), ), ) ); Kirki::add_field( 'customizer_section_four', array( 'type' => 'textarea', 'settings' => 'pgroject_subtitle', 'label' => __( 'Write Your Section Details', 'bsquare' ), 'section' => 'customizer_section_four', 'default' => esc_html__( 'Far far away, behind the word mountains, far from the countries Vokalia and Consonantia', 'bsquare' ), 'priority' => 10, 'partial_refresh' => array( 'project_subti' => array( 'selector' => '.subti', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'project_subti' )); }, ), ), ) ); // Repeater Setting Kirki::add_field( 'customizer_section_four', array( 'type' => 'repeater', 'label' => esc_html__( 'project', 'bsquare' ), 'section' => 'customizer_section_four', 'priority' => 10, 'partial_refresh' => array( 'customizer_section_four' => array( 'selector' => '.ok', 'render_callback' => function() { return get_theme_mod('customizer_section_four'); }, ), ), 'choices' => array( 'limit' => 5 ), 'row_label' => array( 'type' => 'field', 'value' => esc_html__('project', 'bsquare' ), 'field' => 'pro_title', ), 'settings' => 'customizer_section_four', // Defining Pre-Made Repeater Fields 'fields' => array( 'project_img' => array( 'type' => 'image', 'label' => esc_html__( 'input your project image', 'bsquare' ), 'default' => '', ), 'pro_title' => array( 'type' => 'text', 'label' => esc_html__( 'Input your project name', 'bsquare' ), 'default' => '', ), 'pro_sub' => array( 'type' => 'text', 'label' => esc_html__( 'Input your project Location name', 'bsquare' ), 'description' => __( 'Location Newyork,Alabama,Alaska', 'bsquare' ), 'default' => '', ), ) ) ); Kirki::add_field( 'customizer_section_four', array( 'type' => 'text', 'settings' => 'pro_extra', 'label' => __( 'Menu Extra ID', 'bsquare' ), 'section' => 'customizer_section_four', 'default' => '', 'priority' => 10, ) ); // project section end //Team section start Kirki::add_section( 'customizer_section_five', array( 'title' => esc_html__( 'Team section', 'bsquare' ), 'description' => esc_html__( 'My Team section.', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); Kirki::add_field( 'customizer_section_five', array( 'type' => 'text', 'settings' => 'Tgeam_subheading', 'label' => __( 'Write Your Team Section Subheading', 'bsquare' ), 'section' => 'customizer_section_five', 'default' => esc_html__( 'Write Your Team Section Subheading', 'bsquare' ), 'priority' => 10, 'partial_refresh' => array( 'Team_sub' => array( 'selector' => '.tmsub', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'Team_sub' )); }, ), ), ) ); Kirki::add_field( 'customizer_section_five', array( 'type' => 'text', 'settings' => 'Tgeam_title', 'label' => __( 'Write Your Team Section Title', 'bsquare' ), 'section' => 'customizer_section_five', 'default' => esc_html__( 'Write Your Team Section Title', 'bsquare' ), 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_five', array( 'type' => 'textarea', 'settings' => 'Tgeam_subtitle', 'label' => __( 'Write Your Team Details', 'bsquare' ), 'section' => 'customizer_section_five', 'default' => esc_html__( 'Far far away, behind the word mountains, far from the countries Vokalia and Consonantia', 'bsquare' ), 'priority' => 10, ) ); // Repeater Setting Kirki::add_field( 'bsquare', array( 'type' => 'repeater', 'label' => esc_html__( 'Team', 'bsquare' ), 'section' => 'customizer_section_five', 'priority' => 10, 'partial_refresh' => array( ), 'row_label' => array( 'type' => 'field', 'value' => esc_html__('Team', 'bsquare' ), 'field' => 'mem_name', ), 'settings' => 'customizer_section_five', // Defining Pre-Made Repeater Fields 'fields' => array( 'mem_img' => array( 'type' => 'image', 'label' => esc_html__( 'input your Team Member image', 'bsquare' ), 'default' => '', ), 'mem_desgi' => array( 'type' => 'text', 'label' => esc_html__( 'Input your Team Member Designation', 'bsquare' ), 'default' => '', ), 'mem_name' => array( 'type' => 'text', 'label' => esc_html__( 'Input your Team Member name', 'bsquare' ), 'default' => '', ), 'mem_details' => array( 'type' => 'text', 'label' => esc_html__( 'Input your Team Member Details', 'bsquare' ), 'default' => '', ), 'mem_social_one' => array( 'type' => 'text', 'label' => esc_html__( 'Team Member Social Links', 'bsquare' ), 'default' => '', ), 'mem_social_two' => array( 'type' => 'text', 'label' => esc_html__( 'Team Member Social Links', 'bsquare' ), 'default' => '', ), 'mem_social_three' => array( 'type' => 'text', 'label' => esc_html__( 'Team Member Social Links', 'bsquare' ), 'default' => '', ), 'mem_social_four' => array( 'type' => 'text', 'label' => esc_html__( 'Team Member Social Links', 'bsquare' ), 'default' => '', ), ) ) ); Kirki::add_field( 'customizer_section_five', array( 'type' => 'text', 'settings' => 'extra_tm', 'label' => __( 'Menu Extra ID', 'bsquare' ), 'section' => 'customizer_section_five', 'default' => '', 'priority' => 10, ) ); //Team section End //Testimonial section start Kirki::add_section( 'customizer_section_six', array( 'title' => esc_html__( 'Testimonial section', 'bsquare' ), 'description' => esc_html__( 'My Testimonial section.', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id', ) ); // Repeater Setting Kirki::add_field( 'customizer_section_six', array( 'type' => 'repeater', 'label' => esc_html__( 'Testimonial', 'bsquare' ), 'section' => 'customizer_section_six', 'priority' => 10, 'choices' => array( 'limit' => 2 ), 'row_label' => array( 'type' => 'field', 'value' => esc_html__('Testimonial', 'bsquare' ), 'field' => 'test_name', ), 'settings' => 'customizer_section_six', // Defining Pre-Made Repeater Fields 'fields' => array( 'test_img' => array( 'type' => 'image', 'label' => esc_html__( 'input your Testimonial Member image', 'bsquare' ), 'default' => '', ), 'test_desgi' => array( 'type' => 'text', 'label' => esc_html__( 'Input your Testimonial Member Designation', 'bsquare' ), 'default' => '', ), 'test_name' => array( 'type' => 'text', 'label' => esc_html__( 'Input your Testimonial Member name', 'bsquare' ), 'default' => '', ), 'test_spc' => array( 'type' => 'textarea', 'label' => esc_html__( 'Input your Testimonial Member Speach', 'bsquare' ), 'default' => '', ), ) ) ); Kirki::add_field( 'customizer_section_six', array( 'type' => 'text', 'settings' => 'testi_extr', 'label' => __( 'Menu Extra ID', 'bsquare' ), 'section' => 'customizer_section_six', 'default' => '', 'priority' => 10, ) ); //Testimonial section end //blog section start Kirki::add_section( 'customizer_section_seven', array( 'title' => esc_html__( 'Blog section', 'bsquare' ), 'description' => esc_html__( 'My Blog section.', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); Kirki::add_field( 'customizer_section_seven', array( 'type' => 'text', 'settings' => 'Bglog_subheading', 'label' => __( 'Write Your Blog Section subheading', 'bsquare' ), 'section' => 'customizer_section_seven', 'default' => esc_html__( 'Write Your Blog Section Subheading', 'bsquare' ), 'priority' => 10, 'partial_refresh' => array( 'my_set' => array( 'selector' => '.myblog', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'my_set' )); }, ), ), ) ); Kirki::add_field( 'customizer_section_seven', array( 'type' => 'text', 'settings' => 'Bglog_title', 'label' => __( 'Write Your Blog Section Title', 'bsquare' ), 'section' => 'customizer_section_seven', 'default' => esc_html__( 'Write Your Blog Section Title', 'bsquare' ), 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_seven', array( 'type' => 'textarea', 'settings' => 'bglog_sub', 'label' => __( 'Write Your Blog Section Description', 'bsquare' ), 'section' => 'customizer_section_seven', 'default' => esc_html__( 'Far far away, behind the word mountains, far from the countries Vokalia and Consonantia', 'bsquare' ), 'priority' => 10, ) ); /*Kirki::add_field( 'customizer_section_seven', array( 'type' => 'number', 'settings' => 'Blog_lt', 'label' => __( 'Input Your Blog Post Limit', 'bsquare' ), 'section' => 'customizer_section_seven', 'default' => esc_html__( 'Input Your Blog Post Limit', 'bsquare' ), 'priority' => 10, 'default' =>'', 'choices' => [ 'min' => 0, 'max' => 50, 'step' => 1, ], ) );*/ Kirki::add_field( 'customizer_section_seven', array( 'type' => 'switch', 'settings' => 'bred_swict', 'label' => __( 'on/off', 'bsquare' ), 'section' => 'customizer_section_seven', 'default' => 'on', 'priority' => 10, 'choices' => array( 'on' => esc_attr__( 'Enable', 'bsquare' ), 'off' => esc_attr__( 'Disable', 'bsquare' ), ), ) ); Kirki::add_field( 'customizer_section_seven', array( 'type' => 'color', 'settings' => 'bread_color', 'label' => __( 'Set Your breadcrumbs Color)', 'bsquare' ), 'section' => 'customizer_section_seven', 'priority' => 10, 'default' => '#999999', 'active_callback' => [ [ 'setting' => 'bred_swict', 'operator' => '===', 'value' => true, ], ] ) ); Kirki::add_field( 'customizer_section_seven', array( 'type' => 'Image', 'settings' => 'Blog_bread', 'label' => __( 'Blog Single Breadcrumb image', 'bsquare' ), 'section' => 'customizer_section_seven', 'priority' => 10, 'active_callback' => [ [ 'setting' => 'bred_swict', 'operator' => '===', 'value' => true, ], ] ) ); Kirki::add_field( 'customizer_section_seven', array( 'type' => 'text', 'settings' => 'blog_extr', 'label' => __('Menu Extra ID', 'bsquare' ), 'section' => 'customizer_section_seven', 'default' =>'', 'priority' => 10, ) ); //blog section end Kirki::add_section( 'customizer_section_eight', array( 'title' => esc_html__( 'contact section', 'bsquare' ), 'description' => esc_html__( 'contact section', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); Kirki::add_field( 'customizer_section_eight', array( 'type' => 'text', 'settings' => 'cgontact_Su', 'label' => esc_html__( 'Write Your contact Section Subheading', 'bsquare' ), 'section' => 'customizer_section_eight', 'default' => esc_html__('Write Your contact Section Subheading','bsquare'), 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_eight', array( 'type' => 'text', 'settings' => 'cgonta_titllle', 'label' => __( 'Write Your contact Section Title', 'bsquare' ), 'section' => 'customizer_section_eight', 'default' => 'Write Your contact Section Title', 'priority' => 10, 'partial_refresh' => array( 'con_right' => array( 'selector' => '.embedd', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'con_right' )); }, ), ), ) ); Kirki::add_field( 'customizer_section_eight', array( 'type' => 'textarea', 'settings' => 'cgontact_des', 'label' => __( 'Write Your contact Section Description', 'bsquare' ), 'section' => 'customizer_section_eight', 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_eight', array( 'type' => 'editor', 'settings' => 'map_left', 'label' => __( 'contact Form shortcode', 'bsquare' ), 'section' => 'customizer_section_eight', 'priority' => 10, ) ); Kirki::add_field( 'customizer_section_eight', array( 'type' => 'text', 'settings' => 'contact_eextra', 'label' => __('Menu extra ID', 'bsquare' ), 'section' => 'customizer_section_eight', 'priority' => 10, ) ); //Company section start Kirki::add_section( 'customizer_section_nine', array( 'title' => esc_html__( 'Company Info section', 'bsquare' ), 'description' => esc_html__( 'Company Info', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); // Repeater Setting Kirki::add_field( 'customizer_section_nine', array( 'type' => 'repeater', 'label' => esc_attr__( 'Company', 'bsquare' ), 'section' => 'customizer_section_nine', 'priority' => 10, 'choices' => array( 'limit' => 4 ), 'row_label' => array( 'type' => 'field', 'value' => esc_html__('Company', 'bsquare' ), 'field' => 'link_text', ), 'partial_refresh' => array( 'con_nine' => array( 'selector' => '.companyy', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'con_nine' )); }, ), ), 'settings' => 'customizer_section_nine', // Defining Pre-Made Repeater Fields 'fields' => array( 'Com_txt' => array( 'type' => 'text', 'label' => esc_html__( 'Input your text', 'bsquare' ), 'default' => '', ), 'Com_ara' => array( 'type' => 'textarea', 'label' => esc_html__( 'Input your text', 'bsquare' ), 'default' => '', ), 'Com_ico' => array( 'type' => 'text', 'label' => esc_html__( 'font-awesome icon code', 'bsquare' ), 'default' => '', ), ) ) ); //Company section end //Copyright section start Kirki::add_section( 'customizer_section_ten', array( 'title' => esc_html__( 'Copyright section', 'bsquare' ), 'description' => esc_html__( 'Copyright text', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); Kirki::add_field( 'customizer_section_ten', array( 'type' => 'editor', 'settings' => 'Copy_rightg', 'label' => esc_html__( 'Blog Copyright', 'bsquare' ), 'section' => 'customizer_section_ten', 'default' => esc_html__( '2021© bPlugins.com. All rights reserved', 'bsquare' ), 'priority' => 10, 'partial_refresh' => array( 'Copy_right' => array( 'selector' => '.mam', 'render_callback' => function() { return apply_filters( 'the_content',get_theme_mod( 'Copy_right' )); }, ), ), ) ); //Copyright section End //shorter section start Kirki::add_section( 'customizer_section_eleven', array( 'title' => esc_html__( 'section Up/Down', 'bsquare' ), 'description' => esc_html__( 'section Up/Down', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); Kirki::add_field( 'customizer_section_eleven', array( 'type' => 'sortable', 'settings' => 'My_sorter', 'label' => __( 'section Up/Down', 'bsquare' ), 'section' => 'customizer_section_eleven', 'priority' => 10, 'default' => array( 'banner', 'service', 'counter', 'project', 'team', 'testimony', 'news', 'contact', 'address', ), 'choices' => [ 'banner' => esc_html__( 'Banner', 'bsquare' ), 'service' => esc_html__( 'Service', 'bsquare' ), 'counter' => esc_html__( 'Counter', 'bsquare' ), 'project' => esc_html__( 'Project', 'bsquare' ), 'team' => esc_html__( 'Team', 'bsquare' ), 'testimony' => esc_html__( 'Testimony', 'bsquare' ), 'news' => esc_html__( 'News', 'bsquare' ), 'contact' => esc_html__( 'Contact', 'bsquare' ), 'address' => esc_html__( 'Address', 'bsquare' ), ], ) ); //preloader section start Kirki::add_section( 'customizer_section_twelve', array( 'title' => esc_html__( 'Preloader switch', 'bsquare' ), 'description' => esc_html__( 'Preloader switch', 'bsquare' ), 'priority' => 160, 'panel'=>'customizer_panel_id' ) ); Kirki::add_field( 'customizer_section_twelve', array( 'type' => 'switch', 'settings' => 'preloader_swt', 'label' => __( 'Preloader', 'bsquare' ), 'section' => 'customizer_section_twelve', 'priority' => 10, 'default' => '0', 'priority' => 10, 'choices' => [ 'on' => esc_attr__( 'ON', 'bsquare' ), 'off' => esc_attr__( 'OFF', 'bsquare' ), ], ) ); //preloader section end