add_panel( 'theme_option_panel', array( 'title' => __( 'Theme Options', 'blog-explorer' ), 'priority' => 100, 'capability' => 'edit_theme_options', ) ); // Sidebar section $wp_customize->add_section('section_sidebar', array( 'title' => __('Sidebar Options', 'blog-explorer'), 'panel' => 'theme_option_panel' )); // Blog Sidebar Option $wp_customize->add_setting('blog_sidebar', array( 'default' => 'no-sidebar', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_explorer_sanitize_select', 'transport' => 'refresh', ) ); $wp_customize->add_control('blog_sidebar', array( 'label' => __('Blog Sidebar', 'blog-explorer'), 'section' => 'section_sidebar', 'settings' => 'blog_sidebar', 'type' => 'radio', 'choices' => array( 'left-sidebar' => __( 'Left Sidebar', 'blog-explorer'), 'right-sidebar' => __( 'Right Sidebar', 'blog-explorer'), 'no-sidebar' => __( 'No Sidebar', 'blog-explorer'), ), ) ); // Single Post Sidebar Option $wp_customize->add_setting('single_post_sidebar', array( 'default' => 'right-sidebar', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_explorer_sanitize_select', 'transport' => 'refresh', ) ); $wp_customize->add_control('single_post_sidebar', array( 'label' => __('Single Post Sidebar', 'blog-explorer'), 'section' => 'section_sidebar', 'settings' => 'single_post_sidebar', 'type' => 'radio', 'choices' => array( 'left-sidebar' => __( 'Left Sidebar', 'blog-explorer'), 'right-sidebar' => __( 'Right Sidebar', 'blog-explorer'), 'no-sidebar' => __( 'No Sidebar', 'blog-explorer'), ), ) ); // Archive Sidebar Option $wp_customize->add_setting('archive_sidebar', array( 'default' => 'no-sidebar', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_explorer_sanitize_select', 'transport' => 'refresh', ) ); $wp_customize->add_control('archive_sidebar', array( 'label' => __('Archive Sidebar', 'blog-explorer'), 'section' => 'section_sidebar', 'settings' => 'archive_sidebar', 'type' => 'radio', 'choices' => array( 'left-sidebar' => __( 'Left Sidebar', 'blog-explorer'), 'right-sidebar' => __( 'Right Sidebar', 'blog-explorer'), 'no-sidebar' => __( 'No Sidebar', 'blog-explorer'), ), ) ); // Page Sidebar Option $wp_customize->add_setting('page_sidebar', array( 'default' => 'no-sidebar', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_explorer_sanitize_select', 'transport' => 'refresh', ) ); $wp_customize->add_control('page_sidebar', array( 'label' => __('Page Sidebar', 'blog-explorer'), 'section' => 'section_sidebar', 'settings' => 'page_sidebar', 'type' => 'radio', 'choices' => array( 'left-sidebar' => __( 'Left Sidebar', 'blog-explorer'), 'right-sidebar' => __( 'Right Sidebar', 'blog-explorer'), 'no-sidebar' => __( 'No Sidebar', 'blog-explorer'), ), ) ); // Excerpt Length $wp_customize->add_section('section_excerpt_length', array( 'title' => __('Excerpt Length', 'blog-explorer'), 'panel' => 'theme_option_panel' ) ); $wp_customize->add_setting( 'excerpt_length', array( 'default' => '50', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_explorer_sanitize_number_range', 'transport' => 'refresh', ) ); $wp_customize->add_control( 'excerpt_length', array( 'label' => __( 'Excerpt Length', 'blog-explorer' ), 'description' => __( 'Note: Min 5 & Max 200.', 'blog-explorer' ), 'section' => 'section_excerpt_length', 'type' => 'number', 'input_attrs' => array( 'min' => 5, 'max' => 200, 'style' => 'width: 55px;' ), ) );