add_section( 'home_page_popular_post_options', array( 'title' => __('Popular Section', 'blogbull'), 'panel' => 'front_page_theme_options_panel', ) ); $wp_customize->add_setting( 'blogbull_options[enable_popular_posts]', array( 'default' => $blogbull_default['enable_popular_posts'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_popular_posts]', array( 'label' => __('Enable Popular', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogbull_options[popular_post_title]', array( 'default' => $blogbull_default['popular_post_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blogbull_options[popular_post_title]', array( 'label' => __( 'Section Title', 'blogbull' ), 'section' => 'home_page_popular_post_options', 'type' => 'text', ) ); // Popular Posts Category. $wp_customize->add_setting( 'blogbull_options[popular_post_cat]', array( 'default' => $blogbull_default['popular_post_cat'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( new Blogbull_Dropdown_Taxonomies_Control( $wp_customize, 'blogbull_options[popular_post_cat]', array( 'label' => __('Choose Popular posts category', 'blogbull'), 'section' => 'home_page_popular_post_options', ) ) ); // No of posts. $wp_customize->add_setting( 'blogbull_options[no_of_popular_posts]', array( 'default' => $blogbull_default['no_of_popular_posts'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'blogbull_options[no_of_popular_posts]', array( 'label' => __('Number of Posts', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'number', ) ); // Posts Orderby. $wp_customize->add_setting( 'blogbull_options[popular_post_orderby]', array( 'default' => $blogbull_default['popular_post_orderby'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[popular_post_orderby]', array( 'label' => __('Orderby', 'blogbull'), 'section' => 'home_page_popular_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[popular_post_order]', array( 'default' => $blogbull_default['popular_post_order'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[popular_post_order]', array( 'label' => __('Order', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'select', 'choices' => array( 'asc' => __('ASC', 'blogbull'), 'desc' => __('DESC', 'blogbull'), ), ) ); $wp_customize->add_setting( 'blogbull_options[enable_popular_post_author_meta]', array( 'default' => $blogbull_default['enable_popular_post_author_meta'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_popular_post_author_meta]', array( 'label' => esc_html__('Display Author Meta', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogbull_options[select_popular_post_author_meta]', array( 'default' => $blogbull_default['select_popular_post_author_meta'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[select_popular_post_author_meta]', array( 'label' => esc_html__('Select Author Meta', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'select', 'choices' => blogbull_author_meta(), ) ); $wp_customize->add_setting( 'blogbull_options[popular_post_author_meta_title]', array( 'default' => $blogbull_default['popular_post_author_meta_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blogbull_options[popular_post_author_meta_title]', array( 'label' => __('Author Meta Text', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'text', ) ); $wp_customize->add_setting( 'blogbull_options[enable_popular_post_date_meta]', array( 'default' => $blogbull_default['enable_popular_post_date_meta'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_popular_post_date_meta]', array( 'label' => esc_html__('Display Published Date', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogbull_options[select_popular_post_date]', array( 'default' => $blogbull_default['select_popular_post_date'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[select_popular_post_date]', array( 'label' => esc_html__('Select Posted on Date Meta', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'select', 'choices' => blogbull_date_meta(), ) ); $wp_customize->add_setting( 'blogbull_options[select_popular_post_date_meta_title]', array( 'default' => $blogbull_default['select_popular_post_date_meta_title'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blogbull_options[select_popular_post_date_meta_title]', array( 'label' => __('Date Text', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'text', ) ); $wp_customize->add_setting( 'blogbull_options[select_popular_post_date_format]', array( 'default' => $blogbull_default['select_popular_post_date_format'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[select_popular_post_date_format]', array( 'label' => esc_html__('Select Date Format', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'select', 'choices' => blogbull_get_date_formats(), ) ); $wp_customize->add_setting( 'blogbull_options[enable_popular_post_category_meta]', array( 'default' => $blogbull_default['enable_popular_post_category_meta'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_popular_post_category_meta]', array( 'label' => esc_html__('Enable Category Meta', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogbull_options[select_popular_post_number_of_category]', array( 'default' => $blogbull_default['select_popular_post_number_of_category'], 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'blogbull_options[select_popular_post_number_of_category]', array( 'label' => __('Number of Category', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'number', ) ); $wp_customize->add_setting( 'blogbull_options[popular_post_category_label]', array( 'default' => $blogbull_default['popular_post_category_label'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blogbull_options[popular_post_category_label]', array( 'label' => __('Category Label', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'text', ) ); $wp_customize->add_setting( 'blogbull_options[select_popular_post_category_color]', array( 'default' => $blogbull_default['select_popular_post_category_color'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[select_popular_post_category_color]', array( 'label' => esc_html__('Select Category Color', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'select', 'choices' => blogbull_category_color(), ) ); $wp_customize->add_setting( 'blogbull_options[popular_post_column]', array( 'default' => $blogbull_default['popular_post_column'], 'sanitize_callback' => 'blogbull_sanitize_select', ) ); $wp_customize->add_control( 'blogbull_options[popular_post_column]', array( 'label' => __('Popular Post Column', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'select', 'choices' => array( '2' => __('2', 'blogbull'), '3' => __('3', 'blogbull'), '4' => __('4', 'blogbull'), '5' => __('5', 'blogbull'), ), 'active_callback' => 'blogbull_is_popular_post_enabled', ) ); // Enable Autoplay. $wp_customize->add_setting( 'blogbull_options[enable_popular_post_autoplay]', array( 'default' => $blogbull_default['enable_popular_post_autoplay'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_popular_post_autoplay]', array( 'label' => __('Enable Autoplay', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'checkbox', 'active_callback' => 'blogbull_is_popular_post_enabled', ) ); $wp_customize->add_setting( 'blogbull_options[enable_popular_post_arrows]', array( 'default' => $blogbull_default['enable_popular_post_arrows'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_popular_post_arrows]', array( 'label' => __('Enable Arrows', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'checkbox', 'active_callback' => 'blogbull_is_popular_post_enabled', ) ); $wp_customize->add_setting( 'blogbull_options[enable_popular_post_dots]', array( 'default' => $blogbull_default['enable_popular_post_dots'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_popular_post_dots]', array( 'label' => __('Enable Dots', 'blogbull'), 'section' => 'home_page_popular_post_options', 'type' => 'checkbox', 'active_callback' => 'blogbull_is_popular_post_enabled', ) );