esc_html__( 'Editors Choice', 'blogdash' ), 'priority' => 4, ); // Editors Choice enable. $options['setting']['bloghash_enable_editors_choice'] = array( 'transport' => 'refresh', 'sanitize_callback' => 'bloghash_sanitize_toggle', 'control' => array( 'type' => 'bloghash-toggle', 'section' => 'bloghash_section_editors_choice', 'label' => esc_html__( 'Enable editors choice section', 'blogdash' ), ), ); // Title. $options['setting']['bloghash_editors_choice_title'] = array( 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', 'control' => array( 'type' => 'bloghash-text', 'section' => 'bloghash_section_editors_choice', 'label' => esc_html__( 'Title', 'blogdash' ), 'required' => array( array( 'control' => 'bloghash_enable_editors_choice', 'value' => true, 'operator' => '==', ), ), ), ); // Editors choice Data Source $options['setting']['bloghash_editors_choice_data_source'] = array( 'transport' => 'refresh', 'sanitize_callback' => 'bloghash_sanitize_select', 'control' => array( 'type' => 'bloghash-select', 'section' => 'bloghash_section_editors_choice', 'label' => esc_html__( 'Choose Data Source', 'blogdash' ), 'description' => esc_html__( 'Choose Option Of Posts Data Source.', 'blogdash' ), 'choices' => array( 'post' => esc_html__( 'Post Item', 'blogdash' ), 'category' => esc_html__( 'Category', 'blogdash' ), ), 'required' => array( array( 'control' => 'bloghash_enable_editors_choice', 'value' => true, 'operator' => '==', ), ), ), ); // Editors choice category. $options['setting']['bloghash_editors_choice_category'] = array( 'transport' => 'refresh', 'sanitize_callback' => 'bloghash_sanitize_select', 'control' => array( 'type' => 'bloghash-select', 'section' => 'bloghash_section_editors_choice', 'label' => esc_html__( 'Category', 'blogdash' ), 'description' => esc_html__( 'Display posts from selected category only. Leave empty to include all.', 'blogdash' ), 'is_select2' => true, 'data_source' => 'category', 'multiple' => true, 'required' => array( array( 'control' => 'bloghash_enable_editors_choice', 'value' => true, 'operator' => '==', ), array( 'control' => 'bloghash_editors_choice_data_source', 'value' => 'category', 'operator' => '==', ), ), ), ); // Editors choice post item. $options['setting']['bloghash_editors_choice_post'] = array( 'transport' => 'refresh', 'sanitize_callback' => 'bloghash_sanitize_select', 'control' => array( 'type' => 'bloghash-select', 'section' => 'bloghash_section_editors_choice', 'label' => esc_html__( 'Post Item', 'blogdash' ), 'description' => esc_html__( 'Display posts item only. Leave empty to include all.', 'blogdash' ), 'is_select2' => true, 'data_source' => 'post', 'multiple' => true, 'required' => array( array( 'control' => 'bloghash_enable_editors_choice', 'value' => true, 'operator' => '==', ), array( 'control' => 'bloghash_editors_choice_data_source', 'value' => 'post', 'operator' => '==', ), ), ), ); // Editors choice count. $options['setting']['bloghash_editors_choice_number'] = array( 'transport' => 'postMessage', 'sanitize_callback' => 'bloghash_sanitize_range', 'control' => array( 'type' => 'bloghash-range', 'section' => 'bloghash_section_editors_choice', 'label' => esc_html__( 'Post Number', 'blogdash' ), 'description' => esc_html__( 'Set the number of visible posts.', 'blogdash' ), 'min' => 1, 'max' => 4, 'step' => 1, 'unit' => '', 'required' => array( array( 'control' => 'bloghash_enable_editors_choice', 'value' => true, 'operator' => '==', ), array( 'control' => 'bloghash_editors_choice_heading_post_items', 'value' => true, 'operator' => '==', ), ), ), 'partial' => array( 'selector' => '#editors_choice', 'render_callback' => 'bloghash_blog_editors_choice', 'container_inclusive' => true, 'fallback_refresh' => true, ), ); // Editors choice display on. $options['setting']['bloghash_editors_choice_enable_on'] = array( 'transport' => 'refresh', 'sanitize_callback' => 'bloghash_no_sanitize', 'control' => array( 'type' => 'bloghash-checkbox-group', 'label' => esc_html__( 'Enable On: ', 'blogdash' ), 'description' => esc_html__( 'Choose on which pages you want to enable Editors Choice. ', 'blogdash' ), 'section' => 'bloghash_section_editors_choice', 'choices' => array( 'home' => array( 'title' => esc_html__( 'Home Page', 'blogdash' ), ), 'posts_page' => array( 'title' => esc_html__( 'Blog / Posts Page', 'blogdash' ), ), ), 'required' => array( array( 'control' => 'bloghash_enable_editors_choice', 'value' => true, 'operator' => '==', ), ), ), ); return $options; } } endif; new Bloghash_Customizer_Editors_Choice();