'select', 'settings' => 'blog_post_layout', 'label' => esc_html__( 'Choose Blog Post Layout','blogbit'), 'section' => 'blog_section_id', 'placeholder' => esc_html__( 'Blog Post Layout','blogbit'), 'priority' => 10, 'multiple' => 1, 'choices' => [ 'layout-1' => esc_html__( 'Layout 1','blogbit'), 'layout-2' => esc_html__( 'Layout 2','blogbit'), 'layout-3' => esc_html__( 'Layout 3','blogbit'), ], 'default' => 'layout-1', ] ); new \Kirki\Field\Select([ 'type' => 'select', 'settings' => 'blog_banner_layout', 'label' => esc_html__( ' Choose Blog Banner','blogbit'), 'section' => 'blog_section_id', 'placeholder' => esc_html__( 'Blog Banner','blogbit'), 'priority' => 10, 'multiple' => 1, 'choices' => [ 'layout-none' => esc_html__( 'No Banner','blogbit'), 'layout-1' => esc_html__( 'Default Breadcurmb','blogbit'), 'layout-2' => esc_html__( 'Banner Style','blogbit'), ], 'default' => 'layout-2', ] ); // Banner layout image new \Kirki\Field\Image( [ 'type' => 'image', 'settings' => 'banner_style_img', 'label' => esc_html__( 'Banner Image ','blogbit'), 'section' => 'blog_section_id', 'default' => '', 'active_callback' => [ [ 'setting' => 'blog_banner_layout', 'operator' => '==', 'value' => 'layout-2', ] ], ] ); new \Kirki\Field\Text( [ 'type' => 'text', 'settings' => 'blog_banner_subtitle', 'label' => esc_html__( 'Subtitle','blogbit'), 'default' => esc_html__( 'Powerful travel agency to grow','blogbit'), 'section' => 'blog_section_id', 'active_callback' => [ [ 'setting' => 'blog_banner_layout', 'operator' => '==', 'value' => 'layout-2', ] ], ] ); new \Kirki\Field\Text( [ 'type' => 'text', 'settings' => 'blog_banner_title', 'label' => esc_html__( 'Title','blogbit'), 'default' => esc_html__( 'Creative media agency','blogbit'), 'section' => 'blog_section_id', 'active_callback' => [ [ 'setting' => 'blog_banner_layout', 'operator' => '==', 'value' => 'layout-2', ] ], ] ); new \Kirki\Field\Text( [ 'type' => 'textarea', 'settings' => 'blog_banner_desc', 'label' => esc_html__( 'Description','blogbit'), 'default' => esc_html__( 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem perferendis aut quis voluptatum at officiis delectus sunt reprehenderit dolorum nulla!','blogbit'), 'section' => 'blog_section_id', 'active_callback' => [ [ 'setting' => 'blog_banner_layout', 'operator' => '==', 'value' => 'layout-2', ] ], ] ); new \Kirki\Field\Text( [ 'type' => 'text', 'settings' => 'blog_banner_btn_label', 'label' => esc_html__( 'Button Text','blogbit'), 'default' => esc_html__( 'Learn More','blogbit'), 'section' => 'blog_section_id', 'active_callback' => [ [ 'setting' => 'blog_banner_layout', 'operator' => '==', 'value' => 'layout-2', ] ], ] ); new \Kirki\Field\Text( [ 'type' => 'url', 'settings' => 'blog_banner_btn_link', 'label' => esc_html__( 'Button Link','blogbit'), 'default' => esc_html__( '#','blogbit'), 'section' => 'blog_section_id', 'active_callback' => [ [ 'setting' => 'blog_banner_layout', 'operator' => '==', 'value' => 'layout-2', ] ], ] ); new \Kirki\Field\Checkbox_Switch( [ 'type' => 'switch', 'settings' => 'show_blog_author', 'label' => esc_html__( 'Show Author','blogbit'), 'section' => 'blog_section_id', 'default' => '1', 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Yes','blogbit'), 'off' => esc_html__( 'No','blogbit'), ], ] ); new \Kirki\Field\Checkbox_Switch( [ 'type' => 'switch', 'settings' => 'show_blog_date', 'label' => esc_html__( 'Show Date','blogbit'), 'section' => 'blog_section_id', 'default' => '1', 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Yes','blogbit'), 'off' => esc_html__( 'No','blogbit'), ], ] ); new \Kirki\Field\Checkbox_Switch([ 'type' => 'switch', 'settings' => 'show_blog_cat', 'label' => esc_html__( 'Show Category','blogbit'), 'section' => 'blog_section_id', 'default' => '1', 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Yes','blogbit'), 'off' => esc_html__( 'No','blogbit'), ], ] ); new \Kirki\Field\Checkbox_Switch([ 'type' => 'switch', 'settings' => 'show_blog_btn', 'label' => esc_html__( 'Show Button','blogbit'), 'section' => 'blog_section_id', 'default' => '1', 'priority' => 10, 'choices' => [ 'on' => esc_html__( 'Yes','blogbit'), 'off' => esc_html__( 'No','blogbit'), ], ] ); // new \Kirki\Field\Number( // [ // 'settings' => 'post_title_limit', // 'label' => esc_html__( 'Limit Post Title', 'blogbit' ), // 'section' => 'blog_section_id', // 'default' => 35, // 'choices' => [ // 'min' => -10, // 'max' => 80, // 'step' => 1, // ], // ] // ); // new \Kirki\Field\Number( // [ // 'settings' => 'post_desc_limit', // 'label' => esc_html__( 'Limit Post Content', 'blogbit' ), // 'section' => 'blog_section_id', // 'default' => 35, // 'choices' => [ // 'min' => -10, // 'max' => 80, // 'step' => 1, // ], // ] // );