add_section( 'section_featured_gallery', array( 'title' => __( 'Gallery Section', 'blog-mall' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'home_page_panel', ) ); // Enable Featured Gallery Section $wp_customize->add_setting('theme_options[enable_featured_gallery_section]', array( 'default' => $default['enable_featured_gallery_section'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_sanitize_checkbox' ) ); $wp_customize->add_control('theme_options[enable_featured_gallery_section]', array( 'label' => __('Enable Section', 'blog-mall'), 'section' => 'section_featured_gallery', 'settings' => 'theme_options[enable_featured_gallery_section]', 'type' => 'checkbox', ) ); // Number of items $wp_customize->add_setting('theme_options[number_of_featured_gallery_items]', array( 'default' => $default['number_of_featured_gallery_items'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_sanitize_number_range' ) ); $wp_customize->add_control('theme_options[number_of_featured_gallery_items]', array( 'label' => __('Items (Max: 5)', 'blog-mall'), 'section' => 'section_featured_gallery', 'settings' => 'theme_options[number_of_featured_gallery_items]', 'type' => 'number', 'active_callback' => 'blog_mall_featured_gallery_active', 'input_attrs' => array( 'min' => 1, 'max' => 5, 'step' => 1, ), ) ); // Column $wp_customize->add_setting('theme_options[featured_gallery_column]', array( 'default' => $default['featured_gallery_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_gallery_column]', array( 'label' => __('Select Column', 'blog-mall'), 'section' => 'section_featured_gallery', 'settings' => 'theme_options[featured_gallery_column]', 'type' => 'radio-image', 'active_callback' => 'blog_mall_featured_gallery_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', 'col-4' => esc_url(get_template_directory_uri()) . '/assets/images/column-4.jpg', 'col-5' => esc_url(get_template_directory_uri()) . '/assets/images/column-5.jpg', ), )) ); // Content Type $wp_customize->add_setting('theme_options[featured_gallery_content_type]', array( 'default' => $default['featured_gallery_content_type'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_sanitize_select' ) ); $wp_customize->add_control('theme_options[featured_gallery_content_type]', array( 'label' => __('Content Type', 'blog-mall'), 'section' => 'section_featured_gallery', 'settings' => 'theme_options[featured_gallery_content_type]', 'type' => 'select', 'active_callback' => 'blog_mall_featured_gallery_active', 'choices' => array( 'featured_gallery_page' => __('Page','blog-mall'), 'featured_gallery_post' => __('Post','blog-mall'), ), ) ); $number_of_featured_gallery_items = blog_mall_get_option( 'number_of_featured_gallery_items' ); for( $i=1; $i<=$number_of_featured_gallery_items; $i++ ) { // Page $wp_customize->add_setting('theme_options[featured_gallery_page_'.$i.']', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_dropdown_pages' ) ); $wp_customize->add_control('theme_options[featured_gallery_page_'.$i.']', array( 'label' => sprintf( __('Select Page #%1$s', 'blog-mall'), $i), 'section' => 'section_featured_gallery', 'settings' => 'theme_options[featured_gallery_page_'.$i.']', 'type' => 'dropdown-pages', 'active_callback' => 'blog_mall_featured_gallery_page', ) ); // Posts $wp_customize->add_setting('theme_options[featured_gallery_post_'.$i.']', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_mall_dropdown_pages' ) ); $wp_customize->add_control('theme_options[featured_gallery_post_'.$i.']', array( 'label' => sprintf( __('Select Post #%1$s', 'blog-mall'), $i), 'section' => 'section_featured_gallery', 'settings' => 'theme_options[featured_gallery_post_'.$i.']', 'type' => 'select', 'choices' => blog_mall_dropdown_posts(), 'active_callback' => 'blog_mall_featured_gallery_post', ) ); }