add_section( 'single_related_options', array( 'title' => esc_html__( 'Single Related Options', 'bloglex' ), 'panel' => 'single_options_panel', ) ); /*Show Related Posts *-------------------------------*/ $wp_customize->add_setting( 'bloglex_options[show_related_posts]', array( 'default' => $bloglex_default['show_related_posts'], 'sanitize_callback' => 'bloglex_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloglex_options[show_related_posts]', array( 'label' => __( 'Show Related Posts', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'checkbox', ) ); /*Related Posts Text.*/ $wp_customize->add_setting( 'bloglex_options[related_posts_text]', array( 'default' => $bloglex_default['related_posts_text'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'bloglex_options[related_posts_text]', array( 'label' => __( 'Related Posts Text', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'text', ) ); /* Number of Related Posts */ $wp_customize->add_setting( 'bloglex_options[no_of_related_posts]', array( 'default' => $bloglex_default['no_of_related_posts'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'bloglex_options[no_of_related_posts]', array( 'label' => __( 'Number of Related Posts', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'number', ) ); /*Related Posts Orderby*/ $wp_customize->add_setting( 'bloglex_options[related_posts_orderby]', array( 'default' => $bloglex_default['related_posts_orderby'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[related_posts_orderby]', array( 'label' => __( 'Orderby', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'select', 'choices' => array( 'date' => __('Date', 'bloglex'), 'id' => __('ID', 'bloglex'), 'title' => __('Title', 'bloglex'), 'rand' => __('Random', 'bloglex'), ), ) ); /*Related Posts Order*/ $wp_customize->add_setting( 'bloglex_options[related_posts_order]', array( 'default' => $bloglex_default['related_posts_order'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[related_posts_order]', array( 'label' => __( 'Order', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'select', 'choices' => array( 'asc' => __('ASC', 'bloglex'), 'desc' => __('DESC', 'bloglex'), ), ) ); $wp_customize->add_setting( 'bloglex_options[enable_related_posts_author_meta]', array( 'default' => $bloglex_default['enable_related_posts_author_meta'], 'sanitize_callback' => 'bloglex_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloglex_options[enable_related_posts_author_meta]', array( 'label' => esc_html__( 'Show Author Meta', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'bloglex_options[select_related_posts_author_meta]', array( 'default' => $bloglex_default['select_related_posts_author_meta'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[select_related_posts_author_meta]', array( 'label' => esc_html__( 'Author Meta Display Options', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'select', 'choices' => bloglex_author_meta(), ) ); $wp_customize->add_setting( 'bloglex_options[related_posts_author_meta_title]', array( 'default' => $bloglex_default['related_posts_author_meta_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'bloglex_options[related_posts_author_meta_title]', array( 'label' => __( 'Author Meta Text', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'text', ) ); $wp_customize->add_setting( 'bloglex_options[enable_related_posts_date_meta]', array( 'default' => $bloglex_default['enable_related_posts_date_meta'], 'sanitize_callback' => 'bloglex_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloglex_options[enable_related_posts_date_meta]', array( 'label' => esc_html__( 'Display Published Date', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'bloglex_options[select_related_posts_date]', array( 'default' => $bloglex_default['select_related_posts_date'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[select_related_posts_date]', array( 'label' => esc_html__( 'Select Single Date Meta', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'select', 'choices' => bloglex_date_meta(), ) ); $wp_customize->add_setting( 'bloglex_options[single_related_post_date_meta_title]', array( 'default' => $bloglex_default['single_related_post_date_meta_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'bloglex_options[single_related_post_date_meta_title]', array( 'label' => __( 'Date Text', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'text', ) ); $wp_customize->add_setting( 'bloglex_options[select_related_posts_date_format]', array( 'default' => $bloglex_default['select_related_posts_date_format'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[select_related_posts_date_format]', array( 'label' => esc_html__( 'Select Date Format', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'select', 'choices' => bloglex_get_date_formats(), ) ); $wp_customize->add_setting( 'bloglex_options[enable_related_posts_category_meta]', array( 'default' => $bloglex_default['enable_related_posts_category_meta'], 'sanitize_callback' => 'bloglex_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloglex_options[enable_related_posts_category_meta]', array( 'label' => esc_html__( 'Enable Category Meta', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'bloglex_options[select_related_posts_number_of_category]', array( 'default' => $bloglex_default['select_related_posts_number_of_category'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'bloglex_options[select_related_posts_number_of_category]', array( 'label' => __( 'Number of Category', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'number', ) ); $wp_customize->add_setting( 'bloglex_options[related_posts_category_label]', array( 'default' => $bloglex_default['related_posts_category_label'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'bloglex_options[related_posts_category_label]', array( 'label' => __( 'Category Label', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'text', ) ); $wp_customize->add_setting( 'bloglex_options[select_related_posts_category_color]', array( 'default' => $bloglex_default['select_related_posts_category_color'], 'sanitize_callback' => 'bloglex_sanitize_select', ) ); $wp_customize->add_control( 'bloglex_options[select_related_posts_category_color]', array( 'label' => esc_html__( 'Select Category Color', 'bloglex' ), 'section' => 'single_related_options', 'type' => 'select', 'choices' => bloglex_category_color(), ) );