add_section( 'cat_highlight_post', array( 'title' => esc_html__( 'Highlight Post Section', 'bloglex' ), 'panel' => 'front_page_theme_options_panel', ) ); $wp_customize->add_setting( 'bloglex_options[enable_cat_highlight_section]', array( 'default' => $bloglex_default['enable_cat_highlight_section'], 'sanitize_callback' => 'bloglex_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloglex_options[enable_cat_highlight_section]', array( 'label' => esc_html__( 'Enable Highlight Category', 'bloglex' ), 'section' => 'cat_highlight_post', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'bloglex_section_seperator_cat_highlight_column_1', array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( new Bloglex_Seperator_Control( $wp_customize, 'bloglex_section_seperator_cat_highlight_column_1', array( 'label' => esc_html__( 'Highlight Category Slider', 'bloglex' ), 'settings' => 'bloglex_section_seperator_cat_highlight_column_1', 'section' => 'cat_highlight_post', ) ) ); $wp_customize->add_setting( 'bloglex_options[cat_highlight_post_title]', array( 'default' => $bloglex_default['cat_highlight_post_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'bloglex_options[cat_highlight_post_title]', array( 'label' => __( 'Section Title', 'bloglex' ), 'section' => 'cat_highlight_post', 'type' => 'text', ) ); $wp_customize->add_setting( 'bloglex_options[cat_highlight_post_category]', array( 'default' => $bloglex_default['cat_highlight_post_category'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( new Bloglex_Dropdown_Taxonomies_Control( $wp_customize, 'bloglex_options[cat_highlight_post_category]', array( 'label' => __( 'Choose Post Category', 'bloglex' ), 'description' => __( 'Leave Empty if you don\'t want the posts to be category specific', 'bloglex' ), 'section' => 'cat_highlight_post', ) ) ); $wp_customize->add_setting( 'bloglex_section_seperator_slider_banner', array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( new Bloglex_Seperator_Control( $wp_customize, 'bloglex_section_seperator_slider_banner', array( 'label' => esc_html__( 'Highlight Category Section Meta', 'bloglex' ), 'settings' => 'bloglex_section_seperator_slider_banner', 'section' => 'cat_highlight_post', ) ) ); $wp_customize->add_setting( 'bloglex_options[enable_cat_highlight_author_meta]', array( 'default' => $bloglex_default['enable_cat_highlight_author_meta'], 'sanitize_callback' => 'bloglex_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloglex_options[enable_cat_highlight_author_meta]', array( 'label' => esc_html__('Display Author Meta', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'bloglex_options[select_cat_highlight_author_meta]', array( 'default' => $bloglex_default['select_cat_highlight_author_meta'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[select_cat_highlight_author_meta]', array( 'label' => esc_html__('Select Author Meta', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'select', 'choices' => bloglex_author_meta(), ) ); $wp_customize->add_setting( 'bloglex_options[cat_highlight_author_meta_title]', array( 'default' => $bloglex_default['cat_highlight_author_meta_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'bloglex_options[cat_highlight_author_meta_title]', array( 'label' => __('Author Meta Text', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'text', ) ); $wp_customize->add_setting( 'bloglex_options[enable_cat_highlight_date_meta]', array( 'default' => $bloglex_default['enable_cat_highlight_date_meta'], 'sanitize_callback' => 'bloglex_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloglex_options[enable_cat_highlight_date_meta]', array( 'label' => esc_html__('Display Published Date', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'bloglex_options[select_cat_highlight_date]', array( 'default' => $bloglex_default['select_cat_highlight_date'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[select_cat_highlight_date]', array( 'label' => esc_html__('Select Single Date Meta', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'select', 'choices' => bloglex_date_meta(), ) ); $wp_customize->add_setting( 'bloglex_options[select_cat_highlight_date_meta_title]', array( 'default' => $bloglex_default['select_cat_highlight_date_meta_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'bloglex_options[select_cat_highlight_date_meta_title]', array( 'label' => __('Date Text', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'text', ) ); $wp_customize->add_setting( 'bloglex_options[select_cat_highlight_date_format]', array( 'default' => $bloglex_default['select_cat_highlight_date_format'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[select_cat_highlight_date_format]', array( 'label' => esc_html__('Select Date Format', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'select', 'choices' => bloglex_get_date_formats(), ) ); $wp_customize->add_setting( 'bloglex_options[enable_cat_highlight_category_meta]', array( 'default' => $bloglex_default['enable_cat_highlight_category_meta'], 'sanitize_callback' => 'bloglex_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloglex_options[enable_cat_highlight_category_meta]', array( 'label' => esc_html__('Enable Category Meta', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'bloglex_options[select_cat_highlight_number_of_category]', array( 'default' => $bloglex_default['select_cat_highlight_number_of_category'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'bloglex_options[select_cat_highlight_number_of_category]', array( 'label' => __('Number of Category', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'number', ) ); $wp_customize->add_setting( 'bloglex_options[cat_highlight_category_label]', array( 'default' => $bloglex_default['cat_highlight_category_label'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'bloglex_options[cat_highlight_category_label]', array( 'label' => __('Category Label', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'text', ) ); $wp_customize->add_setting( 'bloglex_options[select_cat_highlight_category_color]', array( 'default' => $bloglex_default['select_cat_highlight_category_color'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[select_cat_highlight_category_color]', array( 'label' => esc_html__('Select Category Color', 'bloglex'), 'section' => 'cat_highlight_post', 'type' => 'select', 'choices' => bloglex_category_color(), ) );