'slider', 'settings' => 'business_guidance_coach_logo_resizer', 'label' => esc_html__( 'Adjust Your Logo Size ', 'business-guidance-coach' ), 'section' => 'title_tagline', 'default' => 70, 'choices' => [ 'min' => 10, 'max' => 300, 'step' => 10, ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_enable_logo_text', 'section' => 'title_tagline', 'default' => '

' . __( 'Enable / Disable Site Title and Tagline', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'switch', 'settings' => 'business_guidance_coach_display_header_title', 'label' => esc_html__( 'Site Title Enable / Disable Button', 'business-guidance-coach' ), 'section' => 'title_tagline', 'default' => '1', 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Enable', 'business-guidance-coach' ), 'off' => esc_html__( 'Disable', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'switch', 'settings' => 'business_guidance_coach_display_header_text', 'label' => esc_html__( 'Tagline Enable / Disable Button', 'business-guidance-coach' ), 'section' => 'title_tagline', 'default' => false, 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Enable', 'business-guidance-coach' ), 'off' => esc_html__( 'Disable', 'business-guidance-coach' ), ], ] ); // FONT STYLE TYPOGRAPHY Kirki::add_panel( 'business_guidance_coach_panel_id', array( 'priority' => 10, 'title' => esc_html__( 'Typography', 'business-guidance-coach' ), ) ); Kirki::add_section( 'business_guidance_coach_font_style_section', array( 'title' => esc_attr__( 'Typography Option', 'business-guidance-coach' ), 'priority' => 2, 'capability' => 'edit_theme_options', ) ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_all_headings_typography', 'section' => 'business_guidance_coach_font_style_section', 'default' => '

' . __( 'Heading Of All Sections', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); Kirki::add_field( 'global', array( 'type' => 'typography', 'settings' => 'business_guidance_coach_all_headings_typography', 'label' => esc_attr__( 'Heading Typography', 'business-guidance-coach' ), 'description' => esc_attr__( 'Select the typography options for your heading.', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_font_style_section', 'priority' => 10, 'default' => array( 'font-family' => '', 'variant' => '', ), 'output' => array( array( 'element' => array( 'h1','h2','h3','h4','h5','h6', ), ), ), ) ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_body_content_typography', 'section' => 'business_guidance_coach_font_style_section', 'default' => '

' . __( 'Body Content', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); Kirki::add_field( 'global', array( 'type' => 'typography', 'settings' => 'business_guidance_coach_body_content_typography', 'label' => esc_attr__( 'Content Typography', 'business-guidance-coach' ), 'description' => esc_attr__( 'Select the typography options for your content.', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_font_style_section', 'priority' => 10, 'default' => array( 'font-family' => '', 'variant' => '', ), 'output' => array( array( 'element' => array( 'body', ), ), ), ) ); // PANEL Kirki::add_panel( 'business_guidance_coach_panel_id', array( 'priority' => 10, 'title' => esc_html__( 'Theme Options', 'business-guidance-coach' ), ) ); // Additional Settings Kirki::add_section( 'business_guidance_coach_additional_settings', array( 'title' => esc_html__( 'Additional Settings', 'business-guidance-coach' ), 'description' => esc_html__( 'Scroll To Top', 'business-guidance-coach' ), 'panel' => 'business_guidance_coach_panel_id', 'priority' => 160, ) ); Kirki::add_field( 'theme_config_id', [ 'type' => 'toggle', 'settings' => 'business_guidance_coach_scroll_enable_setting', 'label' => esc_html__( 'Here you can enable or disable your scroller.', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_additional_settings', 'default' => '1', 'priority' => 10, ] ); new \Kirki\Field\Radio_Buttonset( [ 'settings' => 'business_guidance_coach_scroll_top_position', 'label' => esc_html__( 'Alignment for Scroll To Top', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_additional_settings', 'default' => 'Right', 'priority' => 10, 'choices' => [ 'Left' => esc_html__( 'Left', 'business-guidance-coach' ), 'Center' => esc_html__( 'Center', 'business-guidance-coach' ), 'Right' => esc_html__( 'Right', 'business-guidance-coach' ), ], ] ); new \Kirki\Field\Select( [ 'settings' => 'menu_text_transform_business_guidance_coach', 'label' => esc_html__( 'Menus Text Transform', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_additional_settings', 'default' => 'CAPITALISE', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ 'CAPITALISE' => esc_html__( 'CAPITALISE', 'business-guidance-coach' ), 'UPPERCASE' => esc_html__( 'UPPERCASE', 'business-guidance-coach' ), 'LOWERCASE' => esc_html__( 'LOWERCASE', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'slider', 'settings' => 'business_guidance_coach_container_width', 'label' => esc_html__( 'Theme Container Width', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_additional_settings', 'default' => 100, 'choices' => [ 'min' => 50, 'max' => 100, 'step' => 1, ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'toggle', 'settings' => 'business_guidance_coach_site_loader', 'label' => esc_html__( 'Here you can enable or disable your Site Loader.', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_additional_settings', 'default' => false, 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'toggle', 'settings' => 'business_guidance_coach_sticky_header', 'label' => esc_html__( 'Here you can enable or disable your Sticky Header.', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_additional_settings', 'default' => false, 'priority' => 10, ] ); new \Kirki\Field\Select( [ 'settings' => 'business_guidance_coach_page_layout', 'label' => esc_html__( 'Page Layout Setting', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_additional_settings', 'default' => 'One Column', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ 'Left Sidebar' => __('Left Sidebar','business-guidance-coach'), 'Right Sidebar' => __('Right Sidebar','business-guidance-coach'), 'One Column' => __('One Column','business-guidance-coach') ], ] ); if ( class_exists("woocommerce")){ // Woocommerce Settings Kirki::add_section( 'business_guidance_coach_woocommerce_settings', array( 'title' => esc_html__( 'Woocommerce Settings', 'business-guidance-coach' ), 'description' => esc_html__( 'Shop Page', 'business-guidance-coach' ), 'panel' => 'business_guidance_coach_panel_id', 'priority' => 160, ) ); Kirki::add_field( 'theme_config_id', [ 'type' => 'toggle', 'settings' => 'business_guidance_coach_shop_sidebar', 'label' => esc_html__( 'Here you can enable or disable shop page sidebar.', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_woocommerce_settings', 'default' => '1', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'toggle', 'settings' => 'business_guidance_coach_product_sidebar', 'label' => esc_html__( 'Here you can enable or disable product page sidebar.', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_woocommerce_settings', 'default' => '1', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'toggle', 'settings' => 'business_guidance_coach_related_product_setting', 'label' => esc_html__( 'Here you can enable or disable your related products.', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_woocommerce_settings', 'default' => true, 'priority' => 10, ] ); new \Kirki\Field\Number( [ 'settings' => 'business_guidance_coach_per_columns', 'label' => esc_html__( 'Product Per Row', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_woocommerce_settings', 'default' => 3, 'choices' => [ 'min' => 1, 'max' => 4, 'step' => 1, ], ] ); new \Kirki\Field\Number( [ 'settings' => 'business_guidance_coach_product_per_page', 'label' => esc_html__( 'Product Per Page', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_woocommerce_settings', 'default' => 9, 'choices' => [ 'min' => 1, 'max' => 15, 'step' => 1, ], ], ); new \Kirki\Field\Select( [ 'settings' => 'business_guidance_coach_shop_page_layout', 'label' => esc_html__( 'Shop Page Layout Setting', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_woocommerce_settings', 'default' => 'Right Sidebar', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ 'Left Sidebar' => __('Left Sidebar','business-guidance-coach'), 'Right Sidebar' => __('Right Sidebar','business-guidance-coach') ], ] ); new \Kirki\Field\Select( [ 'settings' => 'business_guidance_coach_product_page_layout', 'label' => esc_html__( 'Product Page Layout Setting', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_woocommerce_settings', 'default' => 'Right Sidebar', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ 'Left Sidebar' => __('Left Sidebar','business-guidance-coach'), 'Right Sidebar' => __('Right Sidebar','business-guidance-coach') ], ] ); new \Kirki\Field\Radio_Buttonset( [ 'settings' => 'business_guidance_coach_woocommerce_pagination_position', 'label' => esc_html__( 'Woocommerce Pagination Alignment', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_woocommerce_settings', 'default' => 'Center', 'priority' => 10, 'choices' => [ 'Left' => esc_html__( 'Left', 'business-guidance-coach' ), 'Center' => esc_html__( 'Center', 'business-guidance-coach' ), 'Right' => esc_html__( 'Right', 'business-guidance-coach' ), ], ] ); } // POST SECTION Kirki::add_section( 'business_guidance_coach_section_post', array( 'title' => esc_html__( 'Post Settings', 'business-guidance-coach' ), 'description' => esc_html__( 'Here you can get different post settings', 'business-guidance-coach' ), 'panel' => 'business_guidance_coach_panel_id', 'priority' => 160, ) ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_enable_post_heading', 'section' => 'business_guidance_coach_section_post', 'default' => '

' . __( 'Enable / Disable Post Settings.', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'switch', 'settings' => 'business_guidance_coach_blog_admin_enable', 'label' => esc_html__( 'Post Author Enable / Disable Button', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_section_post', 'default' => '1', 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Enable', 'business-guidance-coach' ), 'off' => esc_html__( 'Disable', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'switch', 'settings' => 'business_guidance_coach_blog_comment_enable', 'label' => esc_html__( 'Post Comment Enable / Disable Button', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_section_post', 'default' => '1', 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Enable', 'business-guidance-coach' ), 'off' => esc_html__( 'Disable', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'slider', 'settings' => 'business_guidance_coach_post_excerpt_number', 'label' => esc_html__( 'Post Content Range', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_section_post', 'default' => 15, 'choices' => [ 'min' => 0, 'max' => 100, 'step' => 1, ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'toggle', 'settings' => 'business_guidance_coach_pagination_setting', 'label' => esc_html__( 'Here you can enable or disable your Pagination.', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_section_post', 'default' => true, 'priority' => 10, ] ); new \Kirki\Field\Select( [ 'settings' => 'business_guidance_coach_archive_sidebar_layout', 'label' => esc_html__( 'Archive Post Sidebar Layout Setting', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_section_post', 'default' => 'Right Sidebar', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ 'Left Sidebar' => __('Left Sidebar','business-guidance-coach'), 'Right Sidebar' => __('Right Sidebar','business-guidance-coach') ], ] ); new \Kirki\Field\Select( [ 'settings' => 'business_guidance_coach_single_post_sidebar_layout', 'label' => esc_html__( 'Single Post Sidebar Layout Setting', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_section_post', 'default' => 'Right Sidebar', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ 'Left Sidebar' => __('Left Sidebar','business-guidance-coach'), 'Right Sidebar' => __('Right Sidebar','business-guidance-coach') ], ] ); new \Kirki\Field\Select( [ 'settings' => 'business_guidance_coach_search_sidebar_layout', 'label' => esc_html__( 'Search Page Sidebar Layout Setting', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_section_post', 'default' => 'Right Sidebar', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ 'Left Sidebar' => __('Left Sidebar','business-guidance-coach'), 'Right Sidebar' => __('Right Sidebar','business-guidance-coach') ], ] ); // HEADER SECTION Kirki::add_section( 'business_guidance_coach_section_header', array( 'title' => esc_html__( 'Header Settings', 'business-guidance-coach' ), 'description' => esc_html__( 'Here you can add header information.', 'business-guidance-coach' ), 'panel' => 'business_guidance_coach_panel_id', 'priority' => 160, ) ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_enable_topbar_text', 'section' => 'business_guidance_coach_section_header', 'default' => '

' . __( 'Top Header Text', 'business-guidance-coach' ) . '

', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'text', 'settings' => 'business_guidance_coach_topbar_text' , 'section' => 'business_guidance_coach_section_header', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_enable_phone_heading', 'section' => 'business_guidance_coach_section_header', 'default' => '

' . __( 'Phone Number', 'business-guidance-coach' ) . '

', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'text', 'settings' => 'business_guidance_coach_topbar_phone_number' , 'section' => 'business_guidance_coach_section_header', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_enable_email_heading', 'section' => 'business_guidance_coach_section_header', 'default' => '

' . __( 'Email Address', 'business-guidance-coach' ) . '

', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'text', 'settings' => 'business_guidance_coach_topbar_email_address' , 'section' => 'business_guidance_coach_section_header', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_enable_button_heading', 'section' => 'business_guidance_coach_section_header', 'default' => '

' . __( 'Header Button', 'business-guidance-coach' ) . '

', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'text', 'label' => esc_html__( 'Button Text', 'business-guidance-coach' ), 'settings' => 'business_guidance_coach_header_button_text' , 'section' => 'business_guidance_coach_section_header', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'url', 'label' => esc_html__( 'Button Link', 'business-guidance-coach' ), 'settings' => 'business_guidance_coach_header_button_link' , 'section' => 'business_guidance_coach_section_header', ] ); // SLIDER SECTION Kirki::add_section( 'business_guidance_coach_blog_slide_section', array( 'title' => esc_html__( ' Slider Settings', 'business-guidance-coach' ), 'description' => esc_html__( 'You have to select post category to show slider.', 'business-guidance-coach' ), 'panel' => 'business_guidance_coach_panel_id', 'priority' => 160, ) ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_enable_heading', 'section' => 'business_guidance_coach_blog_slide_section', 'default' => '

' . __( 'Enable / Disable Slider', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'switch', 'settings' => 'business_guidance_coach_blog_box_enable', 'label' => esc_html__( 'Section Enable / Disable', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_blog_slide_section', 'default' => false, 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Enable', 'business-guidance-coach' ), 'off' => esc_html__( 'Disable', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_slider_heading', 'section' => 'business_guidance_coach_blog_slide_section', 'default' => '

' . __( 'Slider', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'number', 'settings' => 'business_guidance_coach_blog_slide_number', 'label' => esc_html__( 'Number of slides to show', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_blog_slide_section', 'default' => 3, 'choices' => [ 'min' => 0, 'max' => 80, 'step' => 1, ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'select', 'settings' => 'business_guidance_coach_blog_slide_category', 'label' => esc_html__( 'Select the category to show slider ( Image Dimension 1600 x 600 )', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_blog_slide_section', 'default' => '', 'placeholder' => esc_html__( 'Select an category...', 'business-guidance-coach' ), 'priority' => 10, 'choices' => business_guidance_coach_get_categories_select(), ] ); new \Kirki\Field\Select( [ 'settings' => 'business_guidance_coach_slider_content_alignment', 'label' => esc_html__( 'Slider Content Alignment', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_blog_slide_section', 'default' => 'LEFT-ALIGN', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ 'LEFT-ALIGN' => esc_html__( 'LEFT-ALIGN', 'business-guidance-coach' ), 'CENTER-ALIGN' => esc_html__( 'CENTER-ALIGN', 'business-guidance-coach' ), 'RIGHT-ALIGN' => esc_html__( 'RIGHT-ALIGN', 'business-guidance-coach' ), ], ] ); new \Kirki\Field\Select( [ 'settings' => 'business_guidance_coach_slider_opacity_color', 'label' => esc_html__( 'Slider Opacity Option', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_blog_slide_section', 'default' => '0.5', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ '0' => esc_html__( '0', 'business-guidance-coach' ), '0.1' => esc_html__( '0.1', 'business-guidance-coach' ), '0.2' => esc_html__( '0.2', 'business-guidance-coach' ), '0.3' => esc_html__( '0.3', 'business-guidance-coach' ), '0.4' => esc_html__( '0.4', 'business-guidance-coach' ), '0.5' => esc_html__( '0.5', 'business-guidance-coach' ), '0.6' => esc_html__( '0.6', 'business-guidance-coach' ), '0.7' => esc_html__( '0.7', 'business-guidance-coach' ), '0.8' => esc_html__( '0.8', 'business-guidance-coach' ), '0.9' => esc_html__( '0.9', 'business-guidance-coach' ), '1.0' => esc_html__( '1.0', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'switch', 'settings' => 'business_guidance_coach_overlay_option', 'label' => esc_html__( 'Enable / Disable Slider Overlay', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_blog_slide_section', 'default' => false, 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Enable', 'business-guidance-coach' ), 'off' => esc_html__( 'Disable', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'color', 'settings' => 'business_guidance_coach_slider_image_overlay_color', 'label' => __( 'choose your Appropriate Overlay Color', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_blog_slide_section', 'default' => '', ] ); //TRENDING BLOGS SECTION Kirki::add_section( 'business_guidance_coach_trending_section', array( 'title' => esc_html__( 'Trending News Settings', 'business-guidance-coach' ), 'description' => esc_html__( 'Here you can add trending blogs.', 'business-guidance-coach' ), 'panel' => 'business_guidance_coach_panel_id', 'priority' => 160, ) ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_enable_heading', 'section' => 'business_guidance_coach_trending_section', 'default' => '

' . __( 'Enable / Disable Our Services', 'business-guidance-coach' ) . '

', 'priority' => 1, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'switch', 'settings' => 'business_guidance_coach_trending_section_enable', 'section' => 'business_guidance_coach_trending_section', 'default' => false, 'priority' => 2, 'choices' => [ 'on' => esc_html__( 'Enable', 'business-guidance-coach' ), 'off' => esc_html__( 'Disable', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_short_heading', 'section' => 'business_guidance_coach_trending_section', 'default' => '

' . __( 'Short Heading', 'business-guidance-coach' ) . '

', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'text', 'settings' => 'business_guidance_coach_trending_short_heading' , 'section' => 'business_guidance_coach_trending_section', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_trending_main_heading', 'section' => 'business_guidance_coach_trending_section', 'default' => '

' . __( 'Heading', 'business-guidance-coach' ) . '

', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'text', 'settings' => 'business_guidance_coach_trending_heading' , 'section' => 'business_guidance_coach_trending_section', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_number_heading', 'section' => 'business_guidance_coach_trending_section', 'default' => '

' . __( 'Number of post to show', 'business-guidance-coach' ) . '

', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'number', 'settings' => 'business_guidance_coach_trending_number', 'section' => 'business_guidance_coach_trending_section', 'default' => 3, 'choices' => [ 'min' => 0, 'max' => 80, 'step' => 1, ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_category_heading', 'section' => 'business_guidance_coach_trending_section', 'default' => '

' . __( 'Select the category to show post', 'business-guidance-coach' ) . '

', ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'select', 'settings' => 'business_guidance_coach_trending_category', 'section' => 'business_guidance_coach_trending_section', 'default' => '', 'placeholder' => esc_html__( 'Select an category...', 'business-guidance-coach' ), 'priority' => 10, 'choices' => business_guidance_coach_get_categories_select(), ] ); // FOOTER SECTION Kirki::add_section( 'business_guidance_coach_footer_section', array( 'title' => esc_html__( 'Footer Settings', 'business-guidance-coach' ), 'description' => esc_html__( 'Here you can change copyright text', 'business-guidance-coach' ), 'panel' => 'business_guidance_coach_panel_id', 'priority' => 160, ) ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_footer_enable_heading', 'section' => 'business_guidance_coach_footer_section', 'default' => '

' . __( 'Enable / Disable Footer Link', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'switch', 'settings' => 'business_guidance_coach_copyright_enable', 'label' => esc_html__( 'Section Enable / Disable', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_footer_section', 'default' => '1', 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Enable', 'business-guidance-coach' ), 'off' => esc_html__( 'Disable', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_footer_text_heading', 'section' => 'business_guidance_coach_footer_section', 'default' => '

' . __( 'Footer Copyright Text', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'text', 'settings' => 'business_guidance_coach_footer_text', 'section' => 'business_guidance_coach_footer_section', 'default' => '', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_footer_text_heading_2', 'section' => 'business_guidance_coach_footer_section', 'default' => '

' . __( 'Footer Copyright Alignment', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); new \Kirki\Field\Select( [ 'settings' => 'business_guidance_coach_copyright_text_alignment', 'label' => esc_html__( 'Copyright text Alignment', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_footer_section', 'default' => 'LEFT-ALIGN', 'placeholder' => esc_html__( 'Choose an option', 'business-guidance-coach' ), 'choices' => [ 'LEFT-ALIGN' => esc_html__( 'LEFT-ALIGN', 'business-guidance-coach' ), 'CENTER-ALIGN' => esc_html__( 'CENTER-ALIGN', 'business-guidance-coach' ), 'RIGHT-ALIGN' => esc_html__( 'RIGHT-ALIGN', 'business-guidance-coach' ), ], ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'custom', 'settings' => 'business_guidance_coach_footer_text_heading_1', 'section' => 'business_guidance_coach_footer_section', 'default' => '

' . __( 'Footer Copyright Background Color', 'business-guidance-coach' ) . '

', 'priority' => 10, ] ); Kirki::add_field( 'theme_config_id', [ 'type' => 'color', 'settings' => 'business_guidance_coach_copyright_bg', 'label' => __( 'Choose Your Copyright Background Color', 'business-guidance-coach' ), 'section' => 'business_guidance_coach_footer_section', 'default' => '', ] ); }