esc_html__( 'Blog Page Settings', 'thinkai' ),
	'id'     => 'blog_setting',
	'desc'   => '',
	'icon'   => 'el el-indent-left',
	'fields' => array(
		array(
			'id'      => 'blog_source_type',
			'type'    => 'button_set',
			'title'   => esc_html__( 'Blog Source Type', 'thinkai' ),
			'options' => array(
				'd' => esc_html__( 'Default', 'thinkai' ),
				'e' => esc_html__( 'Elementor', 'thinkai' ),
			),
			'default' => 'd',
		),
		array(
			'id'       => 'blog_elementor_template',
			'type'     => 'select',
			'title'    => __( 'Template', 'thinkai' ),
			'data'     => 'posts',
			'args'     => [
				'post_type' => [ 'elementor_library' ],
				'posts_per_page'=> -1,
			],
			'required' => [ 'blog_source_type', '=', 'e' ],
		),
		array(
			'id'       => 'blog_default_st',
			'type'     => 'section',
			'title'    => esc_html__( 'Blog Default', 'thinkai' ),
			'indent'   => true,
			'required' => [ 'blog_source_type', '=', 'd' ],
		),
		array(
			'id'      => 'blog_page_banner',
			'type'    => 'switch',
			'title'   => esc_html__( 'Show Banner', 'thinkai' ),
			'desc'    => esc_html__( 'Enable to show banner on blog', 'thinkai' ),
			'default' => true,
		),
		array(
			'id'       => 'blog_features_list',
			'type'     => 'textarea',
			'title'    => esc_html__( 'Banner Feature List', 'thinkai' ),
			'desc'     => esc_html__( 'Enter the Feature List to show in banner section', 'thinkai' ),
			'required' => array( 'blog_page_banner', '=', true ),
		),
		array(
			'id'       => 'blog_banner_title',
			'type'     => 'text',
			'title'    => esc_html__( 'Banner Section Title', 'thinkai' ),
			'desc'     => esc_html__( 'Enter the title to show in banner section', 'thinkai' ),
			'required' => array( 'blog_page_banner', '=', true ),
		),
		array(
			'id'       => 'blog_page_background',
			'type'     => 'media',
			'url'      => true,
			'title'    => esc_html__( 'Background Image', 'thinkai' ),
			'desc'     => esc_html__( 'Insert background image for banner', 'thinkai' ),
			'default'  => array(
			    'url' => THINKAI_URI . 'assets/images/breadcrumb/breadcrumb-1.jpg',
		    ),
			'required' => array( 'blog_page_banner', '=', true ),
		),
		array(
			'id'       => 'blog_sidebar_layout',
			'type'     => 'image_select',
			'title'    => esc_html__( 'Layout', 'thinkai' ),
			'subtitle' => esc_html__( 'Select main content and sidebar alignment.', 'thinkai' ),
			'options'  => array(
				'left'  => array(
					'alt' => esc_html__( '2 Column Left', 'thinkai' ),
					'img' => get_template_directory_uri() . '/assets/images/redux/2cl.png',
				),
				'full'  => array(
					'alt' => esc_html__( '1 Column', 'thinkai' ),
					'img' => get_template_directory_uri() . '/assets/images/redux/1col.png',
				),
				'right' => array(
					'alt' => esc_html__( '2 Column Right', 'thinkai' ),
					'img' => get_template_directory_uri() . '/assets/images/redux/2cr.png',
				),
			),
			'default' => 'right',
		),
		array(
			'id'       => 'blog_page_sidebar',
			'type'     => 'select',
			'title'    => esc_html__( 'Sidebar', 'thinkai' ),
			'desc'     => esc_html__( 'Select sidebar to show at blog listing page', 'thinkai' ),
			'required' => array(
				array( 'blog_sidebar_layout', '=', array( 'left', 'right' ) ),
			),
			'options'  => thinkai_get_sidebars(),
		),
		array(
			'id'      => 'blog_post_comments',
			'type'    => 'switch',
			'title'   => esc_html__( 'Show Post Comments', 'thinkai' ),
			'desc'    => esc_html__( 'Enable to show post comments on posts listing', 'thinkai' ),
			'default' => false,
		),
		array(
			'id'      => 'blog_post_author',
			'type'    => 'switch',
			'title'   => esc_html__( 'Hide Author', 'thinkai' ),
			'desc'    => esc_html__( 'Enable to show author on posts listing', 'thinkai' ),
			'default' => false,
		),
		array(
			'id'      => 'blog_post_date',
			'type'    => 'switch',
			'title'   => esc_html__( 'Hide Post Date', 'thinkai' ),
			'desc'    => esc_html__( 'Enable to show post data on posts listing', 'thinkai' ),
			'default' => false,
		),
		array(
			'id'      => 'blog_post_category',
			'type'    => 'switch',
			'title'   => esc_html__( 'Hide Post Category', 'thinkai' ),
			'desc'    => esc_html__( 'Enable to show post category on posts listing', 'thinkai' ),
			'default' => false,
		),
		array(
			'id'       => 'blog_default_ed',
			'type'     => 'section',
			'indent'   => false,
			'required' => [ 'blog_source_type', '=', 'd' ],
		),
	),
);