add_panel( 'bloger_general_panel', array( 'priority' => 10, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__( 'General Setting', 'bloger' ), 'description' => esc_html__( 'Default section provided by WordPress customizer.', 'bloger' ), ) ); $wp_customize->get_section( 'title_tagline' )->panel = 'bloger_general_panel'; $wp_customize->get_section( 'background_image' )->panel = 'bloger_general_panel'; $wp_customize->get_section('header_image')->panel = 'bloger_general_panel'; $wp_customize->get_section( 'title_tagline' )->panel = 'bloger_general_panel'; $wp_customize->get_section("colors")->panel = 'bloger_general_panel'; /* Template Color option*/ $wp_customize->add_setting( 'tpl_color', array( 'default' => '#016ab9', 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'tpl_color', array( 'label' => __( 'Template Color', 'bloger' ), 'section' => 'colors', 'settings' => 'tpl_color', ) ) ); /** Slider part **/ $wp_customize -> add_panel( 'bloger_home_slider_panel', array( 'priority' => 20, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__('Home Page Setting', 'bloger') ) ); // choose category of slider $wp_customize->add_section( 'bloger_home_slider_cat_choose_section', array( 'title' => esc_html__('Slider Setting','bloger'), 'priority' => 20, 'description' => esc_html__('Slider settings','bloger'), 'panel' => 'bloger_home_slider_panel', ) ); $wp_customize->add_setting( 'bloger_slider_category', array( 'sanitize_callback' => 'bloger_category_select', ) ); $bloger_cat_list = bloger_category_lists(); $wp_customize->add_control( 'bloger_slider_category',array( 'label' => esc_html__('Choose Slider Category','bloger'), 'section' => 'bloger_home_slider_cat_choose_section', 'type' => 'select', 'choices' => $bloger_cat_list, 'priority'=>2 ) ); $wp_customize->add_setting( 'bloger_slider_enable', array( 'sanitize_callback' => 'bloger_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloger_slider_enable', array( 'label'=> esc_html__('Enable Slider','bloger'), 'priority'=>1, 'type'=>'checkbox', 'section'=>'bloger_home_slider_cat_choose_section' ) ); // Display post in home page Option $wp_customize -> add_section( 'bloger_home_post_display_section', array( 'title' => esc_html__('Home Category Post','bloger'), 'description' => esc_html__('Choose Categories to display posts in Home Page','bloger'), 'priority' => 20, 'panel' => 'bloger_home_slider_panel' ) ); //========================================================================================================== if( class_exists( 'WP_Customize_Control' ) ): /** Exclude Multiple Category Control **/ class bloger_WP_Customize_Select_Mul_Cat_Control extends WP_Customize_Control { public function render_content() { $cats = $this->bloger_get_cat_list(); $values = $this->value(); if ( empty( $cats ) ) return; ?> 0) ); foreach($categories as $cat){ $catlist[$cat->term_id] = $cat->name; } return $catlist; } } endif; /** Blog Page Settings **/ /** Blog Exclude Category Control **/ $wp_customize->add_setting( 'bloger_exclude_cat' , array( 'default' => 0, 'sanitize_callback' => 'sanitize_text_field') ); $wp_customize->add_control( new bloger_WP_Customize_Select_Mul_Cat_Control( $wp_customize, 'bloger_exclude_cat', array( 'label' => esc_html__( 'Exclude Category', 'bloger' ), 'description' => esc_html__('Exclude categories from front page', 'bloger'), 'section' => 'bloger_home_post_display_section', 'settings' => 'bloger_exclude_cat', ) )); //=============================================================================================== // Home Feature Post $wp_customize->add_section( 'bloger_home_feature_post', array( 'title'=>esc_html__('Home Feature Post','bloger'), 'description'=>esc_html__('Three Feature Post below of slider','bloger'), 'priority'=>21, 'panel'=>'bloger_home_slider_panel' ) ); $wp_customize->add_setting( 'bloger_feature_post_1', array( 'sanitize_callback'=>'bloger_post_select', 'default' => 0 ) ); $bloger_post_list = bloger_post_lists(); $wp_customize->add_control( 'bloger_feature_post_1',array( 'label' => esc_html__('Feature Post 1','bloger'), 'section' => 'bloger_home_feature_post', 'type' => 'select', 'choices' => $bloger_post_list, 'priority'=>2 ) ); $wp_customize->add_setting( 'bloger_feature_post_2', array( 'sanitize_callback'=>'bloger_post_select', 'default' => 0 ) ); $wp_customize->add_control( 'bloger_feature_post_2',array( 'label' => esc_html__('Feature Post 2','bloger'), 'section' => 'bloger_home_feature_post', 'type' => 'select', 'choices' => $bloger_post_list, 'priority'=>2 ) ); $wp_customize->add_setting( 'bloger_feature_post_3', array( 'sanitize_callback'=>'bloger_post_select', 'default' => 0 ) ); $wp_customize->add_control( 'bloger_feature_post_3',array( 'label' => esc_html__('Feature Post 3','bloger'), 'section' => 'bloger_home_feature_post', 'type' => 'select', 'choices' => $bloger_post_list, 'priority'=>2 ) ); $wp_customize->add_setting( 'bloger_feature_post_enable', array( 'sanitize_callback' => 'bloger_sanitize_checkbox', ) ); $wp_customize->add_control( 'bloger_feature_post_enable', array( 'label'=> esc_html__('Enable Feature post','bloger'), 'priority'=>1, 'type'=>'checkbox', 'section'=>'bloger_home_feature_post' ) ); // Design setting $wp_customize -> add_panel( 'bloger_design_setting_panel', array( 'priority' => 20, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__('Design Setting', 'bloger') ) ); $wp_customize -> add_section( 'bloger_home_page_layout_section', array( 'title' => esc_html__('Home Page Layout','bloger'), 'priority' => 20, 'panel' => 'bloger_design_setting_panel' ) ); $wp_customize -> add_setting( 'bloger_home_page_layout_setting', array( 'default' => 'fullwidth-sidebar-home', 'sanitize_callback' => 'bloger_sanitize_homelayout_radio' ) ); $wp_customize -> add_control( 'bloger_home_page_layout_setting', array( 'label' => esc_html__('Home Layout Option', 'bloger'), 'section' => 'bloger_home_page_layout_section', 'type' => 'radio', 'choices' => array( 'fullwidth-home' => esc_html__('FullWidth','bloger'), 'gridview-home' => esc_html__('Grid view','bloger'), 'fullwidth-sidebar-home' => esc_html__('Full Width With Sidebar','bloger'), ) ) ); /*** Category page settings ****/ // Category page Setting $wp_customize -> add_section( 'bloger_category_page_section', array( 'title' => esc_html__('Archive Page Layout','bloger'), 'priority' => 20, 'panel' => 'bloger_design_setting_panel' ) ); $wp_customize -> add_setting( 'bloger_category_page_layout_setting', array( 'default' => 'fullwidth-category-page', 'sanitize_callback' => 'bloger_sanitize_category_radio' ) ); $wp_customize -> add_control( 'bloger_category_page_layout_setting', array( 'label' => esc_html__('Category Layout Option', 'bloger'), 'section' => 'bloger_category_page_section', 'type' => 'radio', 'choices' => array( 'fullwidth-category-page' => esc_html__('FullWidth','bloger'), 'gridview-category-page' => esc_html__('Grid view','bloger'), 'fullwidth-sidebar-category-page' => esc_html__('Full Width With Sidebar','bloger'), ) ) ); /** category page (End) **/ /*** Single Page settings ****/ // Single Page layout $wp_customize -> add_section( 'bloger_single_page_layout_section', array( 'title' => esc_html__('Single Page Layout','bloger'), 'priority' => 20, 'panel' => 'bloger_design_setting_panel' ) ); $wp_customize -> add_setting( 'bloger_single_page_layout_setting', array( 'default' => 'fullwidth-single-page', 'sanitize_callback' => 'bloger_sanitize_singlepage_radio' ) ); $wp_customize -> add_control( 'bloger_single_page_layout_setting', array( 'label' => esc_html__('Single Page Layout Option', 'bloger'), 'section' => 'bloger_single_page_layout_section', 'type' => 'radio', 'choices' => array( 'fullwidth-single-page' => esc_html__('FullWidth','bloger'), 'fullwidth-sidebar-single-page' => esc_html__('Full Width With Sidebar','bloger'), ) ) ); /** category page (End) **/ // END OF DESIGN PANEL // Footer Setting $wp_customize -> add_panel( 'bloger_footer_setting_panel', array( 'priority' => 20, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__('Footer Setting', 'bloger') ) ); $wp_customize -> add_section( 'bloger_footer_text_section', array( 'title' => esc_html__('Footer Text Option','bloger'), 'priority' => 20, 'panel' => 'bloger_footer_setting_panel' ) ); $wp_customize -> add_setting( 'bloger_footer_text_setting', array( 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize -> add_control( 'bloger_footer_text_setting', array( 'label' => esc_html__('Footer Text (Left)','bloger'), 'section' => 'bloger_footer_text_section', 'type' => 'text', ) ); //Header And Footer social link $wp_customize->add_section( 'bloger_social_link', array( 'title' =>esc_html__('Header & Footer Social Link','bloger'), 'panel' =>'bloger_general_panel', ) ); $wp_customize->add_setting( 'bloger_header_social_icon_enable', array( 'default' => '', 'sanitize_callback'=>'bloger_sanitize_checkbox' ) ); $wp_customize->add_control( 'bloger_header_social_icon_enable', array( 'label' => esc_html__('Enable Header Social link','bloger'), 'section' => 'bloger_social_link', 'type' => 'checkbox', 'priority' => 1 ) ); $wp_customize->add_setting( 'bloger_footer_social_icon_enable', array( 'default' => '', 'sanitize_callback'=>'bloger_sanitize_checkbox' ) ); $wp_customize->add_control( 'bloger_footer_social_icon_enable', array( 'label' => esc_html__('Footer Social Link','bloger'), 'section' => 'bloger_social_link', 'type' => 'checkbox', 'priority' => 2 ) ); $wp_customize->add_setting( 'bloger_facebook_text', array( 'default'=>'', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'bloger_twitter_text', array( 'default'=>'', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'bloger_youtube_text', array( 'default'=>'', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'bloger_pinterest_text', array( 'default'=>'', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'bloger_instagram_text', array( 'default'=>'', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'bloger_linkedin_text', array( 'default'=>'', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'bloger_googleplus_text', array( 'default'=>'', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'bloger_flickr_text', array( 'default'=>'', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'bloger_facebook_text', array( 'label' => esc_html__('Facebook Link','bloger'), 'section' => 'bloger_social_link', 'type' => 'text', ) ); $wp_customize->add_control( 'bloger_twitter_text', array( 'label' => esc_html__('Twitter Link','bloger'), 'section' => 'bloger_social_link', 'type' => 'text', ) ); $wp_customize->add_control( 'bloger_youtube_text', array( 'label' => esc_html__('Youtube Link','bloger'), 'section' => 'bloger_social_link', 'type' => 'text', ) ); $wp_customize->add_control( 'bloger_pinterest_text', array( 'label' => esc_html__('Pinterest Link','bloger'), 'section' => 'bloger_social_link', 'type' => 'text', ) ); $wp_customize->add_control( 'bloger_instagram_text', array( 'label' => esc_html__('Instagram Link','bloger'), 'section' => 'bloger_social_link', 'type' => 'text', ) ); $wp_customize->add_control( 'bloger_linkedin_text', array( 'label' => esc_html__('Linkedin Link','bloger'), 'section' => 'bloger_social_link', 'type' => 'text', ) ); $wp_customize->add_control( 'bloger_googleplus_text', array( 'label' => esc_html__('GooglePlus Link','bloger'), 'section' => 'bloger_social_link', 'type' => 'text', ) ); $wp_customize->add_control( 'bloger_flickr_text', array( 'label' => esc_html__('Flickr Link','bloger'), 'section' => 'bloger_social_link', 'type' => 'text', ) ); //add web page layout $wp_customize->add_section( 'bloger_design_web_layout', array( 'title' => esc_html__('Web Layout', 'bloger'), 'panel' => 'bloger_design_setting_panel' ) ); $wp_customize -> add_setting( 'bloger_layout_option', array( 'default' => 'full_width', 'sanitize_callback' => 'bloger_web_layout', ) ); $wp_customize -> add_control( 'bloger_layout_option', array( 'label' => esc_html__('Website Layout','bloger'), 'description' => esc_html__('Make your website either box layout or full width from click away', 'bloger'), 'type' => 'radio', 'section' => 'bloger_design_web_layout', 'choices' => array( 'box_layout' => esc_html__('Box Layout','bloger'), 'full_width' => esc_html__('Full Width','bloger') ) ) ); //add single post Layout $wp_customize->add_section( 'bloger_single_post_settings', array( 'title' => esc_html__('Post Setting', 'bloger'), 'panel' => 'bloger_design_setting_panel' ) ); $wp_customize->add_setting( 'bloger_single_post_img_enable', array( 'sanitize_callback' => 'bloger_sanitize_checkbox', 'default' => 1 ) ); $wp_customize->add_control( 'bloger_single_post_img_enable', array( 'label'=> esc_html__('Enable Feature Image','bloger'), 'priority'=>1, 'type'=>'checkbox', 'section'=>'bloger_single_post_settings' ) ); $wp_customize->add_setting( 'bloger_single_post_cat_enable', array( 'sanitize_callback' => 'bloger_sanitize_checkbox', 'default' => 1 ) ); $wp_customize->add_control( 'bloger_single_post_cat_enable', array( 'label'=> esc_html__('Enable Post Categories','bloger'), 'priority'=>1, 'type'=>'checkbox', 'section'=>'bloger_single_post_settings' ) ); $wp_customize->add_setting( 'bloger_single_post_title_enable', array( 'sanitize_callback' => 'bloger_sanitize_checkbox', 'default' => 1 ) ); $wp_customize->add_control( 'bloger_single_post_title_enable', array( 'label'=> esc_html__('Enable Post Title','bloger'), 'priority'=>1, 'type'=>'checkbox', 'section'=>'bloger_single_post_settings' ) ); $wp_customize->add_setting( 'bloger_single_post_metadata_enable', array( 'sanitize_callback' => 'bloger_sanitize_checkbox', 'default' => 1 ) ); $wp_customize->add_control( 'bloger_single_post_metadata_enable', array( 'label'=> esc_html__('Enable Post MetaData','bloger'), 'priority'=>1, 'type'=>'checkbox', 'section'=>'bloger_single_post_settings' ) ); $wp_customize->add_setting( 'bloger_single_post_desc_enable', array( 'sanitize_callback' => 'bloger_sanitize_checkbox', 'default' => 1 ) ); $wp_customize->add_control( 'bloger_single_post_desc_enable', array( 'label'=> esc_html__('Enable Description','bloger'), 'priority'=>1, 'type'=>'checkbox', 'section'=>'bloger_single_post_settings' ) ); //Checkbox sanitization customizer function bloger_sanitize_checkbox( $input ) { if ( $input == 1 ) { return 1; } else { return ''; } } //General dropdown sanitize for integer value function bloger_category_select( $input ) { $bloger_cat_list = bloger_category_lists(); if ( array_key_exists( $input, $bloger_cat_list ) ) { return $input; } else { return ''; } } function bloger_post_select( $input ) { $bloger_post_list = bloger_post_lists(); if ( array_key_exists( $input, $bloger_post_list ) ) { return $input; } else { return ''; } } function bloger_web_layout($input){ $valid_keys = array( 'box_layout' => esc_html__('Box Layout','bloger'), 'full_width' => esc_html__('Full Width','bloger') ); if ( array_key_exists( $input, $valid_keys ) ) { return $input; } else { return ''; } } // function bloger_to sanitize background pattern function bloger_sanitize_singlepage_radio($input){ $valid_keys = array( 'fullwidth-single-page' => esc_html__('FullWidth','bloger'), 'fullwidth-sidebar-single-page' => esc_html__('Full Width With Sidebar','bloger'), ); if ( array_key_exists( $input, $valid_keys)) { return $input; } else { return ''; } } // function bloger_to sanitize background pattern function bloger_sanitize_category_radio($input){ $valid_keys = array( 'fullwidth-category-page' => esc_html__('FullWidth','bloger'), 'gridview-category-page' => esc_html__('Grid view','bloger'), 'fullwidth-sidebar-category-page' => esc_html__('Full Width With Sidebar','bloger'), ); if ( array_key_exists( $input, $valid_keys)) { return $input; } else { return ''; } } // function bloger_to sanitize background pattern function bloger_sanitize_homelayout_radio($input){ $valid_keys = array( 'fullwidth-home' => esc_html__('fullwidth-home', 'bloger'), 'gridview-home' => esc_html__('gridview-home', 'bloger'), 'fullwidth-sidebar-home' => esc_html__('fullwidth-sidebar-home', 'bloger'), ); if ( array_key_exists( $input, $valid_keys)) { return $input; } else { return ''; } } /*****************************/ } // end of customizer add_action( 'customize_register', 'bloger_customizer' ); ?>