add_section( 'section_featured_posts', array( 'title' => __( 'Featured Posts Section', 'blog-mall' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'home_page_panel', ) ); // Enable Featured Posts Section $wp_customize->add_setting('theme_options[enable_featured_posts_section]', array( 'default' => $default['enable_featured_posts_section'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_sanitize_checkbox' ) ); $wp_customize->add_control('theme_options[enable_featured_posts_section]', array( 'label' => __('Enable Section', 'blog-mall'), 'section' => 'section_featured_posts', 'settings' => 'theme_options[enable_featured_posts_section]', 'type' => 'checkbox', ) ); // Section Title $wp_customize->add_setting('theme_options[featured_posts_section_title]', array( 'default' => $default['featured_posts_section_title'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control('theme_options[featured_posts_section_title]', array( 'label' => __('Section Title', 'blog-mall'), 'section' => 'section_featured_posts', 'settings' => 'theme_options[featured_posts_section_title]', 'active_callback' => 'blog_mall_featured_posts_active', 'type' => 'text' ) ); // Number of items $wp_customize->add_setting('theme_options[number_of_featured_posts_items]', array( 'default' => $default['number_of_featured_posts_items'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_sanitize_number_range' ) ); $wp_customize->add_control('theme_options[number_of_featured_posts_items]', array( 'label' => __('Items (Max: 6)', 'blog-mall'), 'section' => 'section_featured_posts', 'settings' => 'theme_options[number_of_featured_posts_items]', 'type' => 'number', 'active_callback' => 'blog_mall_featured_posts_active', 'input_attrs' => array( 'min' => 1, 'max' => 6, 'step' => 1, ), ) ); // Column $wp_customize->add_setting('theme_options[featured_posts_column]', array( 'default' => $default['featured_posts_column'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_sanitize_select' ) ); $wp_customize->add_control(new blog_mall_Image_Radio_Control($wp_customize, 'theme_options[featured_posts_column]', array( 'label' => __('Select Column', 'blog-mall'), 'section' => 'section_featured_posts', 'settings' => 'theme_options[featured_posts_column]', 'type' => 'radio-image', 'active_callback' => 'blog_mall_featured_posts_active', 'choices' => array( 'col-1' => esc_url(get_template_directory_uri()) . '/assets/images/column-1.jpg', 'col-2' => esc_url(get_template_directory_uri()) . '/assets/images/column-2.jpg', 'col-3' => esc_url(get_template_directory_uri()) . '/assets/images/column-3.jpg', ), )) ); // Content Type $wp_customize->add_setting('theme_options[featured_posts_content_type]', array( 'default' => $default['featured_posts_content_type'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_sanitize_select' ) ); $wp_customize->add_control('theme_options[featured_posts_content_type]', array( 'label' => __('Content Type', 'blog-mall'), 'section' => 'section_featured_posts', 'settings' => 'theme_options[featured_posts_content_type]', 'type' => 'select', 'active_callback' => 'blog_mall_featured_posts_active', 'choices' => array( 'featured_posts_page' => __('Page','blog-mall'), 'featured_posts_post' => __('Post','blog-mall'), ), ) ); $number_of_featured_posts_items = blog_mall_get_option( 'number_of_featured_posts_items' ); for( $i=1; $i<=$number_of_featured_posts_items; $i++ ) { // Page $wp_customize->add_setting('theme_options[featured_posts_page_'.$i.']', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_dropdown_pages' ) ); $wp_customize->add_control('theme_options[featured_posts_page_'.$i.']', array( 'label' => sprintf( __('Select Page #%1$s', 'blog-mall'), $i), 'section' => 'section_featured_posts', 'settings' => 'theme_options[featured_posts_page_'.$i.']', 'type' => 'dropdown-pages', 'active_callback' => 'blog_mall_featured_posts_page', ) ); // Posts $wp_customize->add_setting('theme_options[featured_posts_post_'.$i.']', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_dropdown_pages' ) ); $wp_customize->add_control('theme_options[featured_posts_post_'.$i.']', array( 'label' => sprintf( __('Select Post #%1$s', 'blog-mall'), $i), 'section' => 'section_featured_posts', 'settings' => 'theme_options[featured_posts_post_'.$i.']', 'type' => 'select', 'choices' => blog_mall_dropdown_posts(), 'active_callback' => 'blog_mall_featured_posts_post', ) ); }