add_section( 'search_latest_post_options' , array( 'title' => __( 'Search Section Trending Post Options', 'blogbull' ), 'panel' => 'header_options_panel', ) ); $wp_customize->add_setting( 'blogbull_options[enable_search_latest_posts]', array( 'default' => $blogbull_default['enable_search_latest_posts'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_search_latest_posts]', array( 'label' => __( 'Enable Trending', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogbull_options[enable_search_latest_label]', array( 'default' => $blogbull_default['enable_search_latest_label'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_search_latest_label]', array( 'label' => __( 'Enable Trending Label', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'checkbox', ) ); // Trending Label Text. $wp_customize->add_setting( 'blogbull_options[search_latest_label_text]', array( 'default' => $blogbull_default['search_latest_label_text'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blogbull_options[search_latest_label_text]', array( 'label' => __( 'Trending Label Text', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'text', ) ); // Trending Posts Category. $wp_customize->add_setting( 'blogbull_options[search_latest_posts_cat]', array( 'default' => $blogbull_default['search_latest_posts_cat'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( new Blogbull_Dropdown_Taxonomies_Control( $wp_customize, 'blogbull_options[search_latest_posts_cat]', array( 'label' => __( 'Choose Trending posts category', 'blogbull' ), 'section' => 'search_latest_post_options', ) ) ); // No of posts. $wp_customize->add_setting( 'blogbull_options[no_of_search_latest_posts]', array( 'default' => $blogbull_default['no_of_search_latest_posts'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'blogbull_options[no_of_search_latest_posts]', array( 'label' => __( 'Number of Posts', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'number', ) ); // Posts Orderby. $wp_customize->add_setting( 'blogbull_options[search_latest_posts_orderby]', array( 'default' => $blogbull_default['search_latest_posts_orderby'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[search_latest_posts_orderby]', array( 'label' => __( 'Orderby', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'select', 'choices' => array( 'date' => __( 'Date', 'blogbull' ), 'id' => __( 'ID', 'blogbull' ), 'title' => __( 'Title', 'blogbull' ), 'rand' => __( 'Random', 'blogbull' ), ), ) ); // Posts Order. $wp_customize->add_setting( 'blogbull_options[search_latest_posts_order]', array( 'default' => $blogbull_default['search_latest_posts_order'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[search_latest_posts_order]', array( 'label' => __( 'Order', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'select', 'choices' => array( 'asc' => __( 'ASC', 'blogbull' ), 'desc' => __( 'DESC', 'blogbull' ), ), ) ); $wp_customize->add_setting( 'blogbull_options[enable_search_latest_posts_author_meta]', array( 'default' => $blogbull_default['enable_search_latest_posts_author_meta'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_search_latest_posts_author_meta]', array( 'label' => esc_html__( 'Display Author Meta', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogbull_options[select_search_latest_posts_author_meta]', array( 'default' => $blogbull_default['select_search_latest_posts_author_meta'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[select_search_latest_posts_author_meta]', array( 'label' => esc_html__( 'Select Author Meta', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'select', 'choices' => blogbull_author_meta(), ) ); $wp_customize->add_setting( 'blogbull_options[search_latest_posts_author_meta_title]', array( 'default' => $blogbull_default['search_latest_posts_author_meta_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blogbull_options[search_latest_posts_author_meta_title]', array( 'label' => __( 'Author Meta Text', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'text', ) ); $wp_customize->add_setting( 'blogbull_options[enable_search_latest_posts_date_meta]', array( 'default' => $blogbull_default['enable_search_latest_posts_date_meta'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_search_latest_posts_date_meta]', array( 'label' => esc_html__( 'Display Published Date', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogbull_options[select_search_latest_posts_date]', array( 'default' => $blogbull_default['select_search_latest_posts_date'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[select_search_latest_posts_date]', array( 'label' => esc_html__( 'Select Posted on Date Meta', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'select', 'choices' => blogbull_date_meta(), ) ); $wp_customize->add_setting( 'blogbull_options[single_search_latest_post_date_meta_title]', array( 'default' => $blogbull_default['single_search_latest_post_date_meta_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blogbull_options[single_search_latest_post_date_meta_title]', array( 'label' => __( 'Date Text', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'text', ) ); $wp_customize->add_setting( 'blogbull_options[select_search_latest_posts_date_format]', array( 'default' => $blogbull_default['select_search_latest_posts_date_format'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[select_search_latest_posts_date_format]', array( 'label' => esc_html__( 'Select Date Format', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'select', 'choices' => blogbull_get_date_formats(), ) ); $wp_customize->add_setting( 'blogbull_options[enable_search_latest_posts_category_meta]', array( 'default' => $blogbull_default['enable_search_latest_posts_category_meta'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_search_latest_posts_category_meta]', array( 'label' => esc_html__( 'Enable Category Meta', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogbull_options[select_search_latest_posts_number_of_category]', array( 'default' => $blogbull_default['select_search_latest_posts_number_of_category'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'blogbull_options[select_search_latest_posts_number_of_category]', array( 'label' => __( 'Number of Category', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'number', ) ); $wp_customize->add_setting( 'blogbull_options[search_latest_posts_category_label]', array( 'default' => $blogbull_default['search_latest_posts_category_label'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blogbull_options[search_latest_posts_category_label]', array( 'label' => esc_html__( 'Category Label', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'text', ) ); $wp_customize->add_setting( 'blogbull_options[select_search_latest_posts_category_color]', array( 'default' => $blogbull_default['select_search_latest_posts_category_color'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[select_search_latest_posts_category_color]', array( 'label' => esc_html__( 'Select Category Color', 'blogbull' ), 'section' => 'search_latest_post_options', 'type' => 'select', 'choices' => blogbull_category_color(), ) );