add_panel( 'theme_option_panel', array( 'title' => esc_html__( 'Theme Options', 'blog-expert' ), 'priority' => 200, 'capability' => 'edit_theme_options', ) ); /*layout management section start */ $wp_customize->add_section( 'theme_option_section_settings', array( 'title' => esc_html__( 'Layout Management', 'blog-expert' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); /*Home Page Layout*/ $wp_customize->add_setting( 'home_page_content_status', array( 'default' => $default['home_page_content_status'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_checkbox', ) ); $wp_customize->add_control( 'home_page_content_status', array( 'label' => esc_html__( 'Enable Static Page Content', 'blog-expert' ), 'section' => 'theme_option_section_settings', 'type' => 'checkbox', 'priority' => 150, ) ); /*Home Page Layout*/ $wp_customize->add_setting( 'enable_overlay_option', array( 'default' => $default['enable_overlay_option'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_checkbox', ) ); $wp_customize->add_control( 'enable_overlay_option', array( 'label' => esc_html__( 'Enable Banner Overlay', 'blog-expert' ), 'section' => 'theme_option_section_settings', 'type' => 'checkbox', 'priority' => 150, ) ); /*Home Page Layout*/ $wp_customize->add_setting( 'homepage_layout_option', array( 'default' => $default['homepage_layout_option'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_select', ) ); $wp_customize->add_control( 'homepage_layout_option', array( 'label' => esc_html__( 'Home Page Layout', 'blog-expert' ), 'section' => 'theme_option_section_settings', 'choices' => array( 'full-width' => __( 'Full Width', 'blog-expert' ), 'boxed' => __( 'Boxed', 'blog-expert' ), ), 'type' => 'select', 'priority' => 160, ) ); /*Global Layout*/ $wp_customize->add_setting( 'global_layout', array( 'default' => $default['global_layout'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_select', ) ); $wp_customize->add_control( 'global_layout', array( 'label' => esc_html__( 'Global Layout', 'blog-expert' ), 'section' => 'theme_option_section_settings', 'choices' => array( 'left-sidebar' => esc_html__( 'Primary Sidebar - Content', 'blog-expert' ), 'right-sidebar' => esc_html__( 'Content - Primary Sidebar', 'blog-expert' ), 'no-sidebar' => esc_html__( 'No Sidebar', 'blog-expert' ), ), 'type' => 'select', 'priority' => 170, ) ); /*content excerpt in global*/ $wp_customize->add_setting( 'excerpt_length_global', array( 'default' => $default['excerpt_length_global'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_positive_integer', ) ); $wp_customize->add_control( 'excerpt_length_global', array( 'label' => esc_html__( 'Set Global Archive Length', 'blog-expert' ), 'section' => 'theme_option_section_settings', 'type' => 'number', 'priority' => 175, 'input_attrs' => array( 'min' => 1, 'max' => 200, 'style' => 'width: 150px;' ), ) ); /*Archive Layout text*/ $wp_customize->add_setting( 'archive_layout', array( 'default' => $default['archive_layout'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_select', ) ); $wp_customize->add_control( 'archive_layout', array( 'label' => esc_html__( 'Archive Layout', 'blog-expert' ), 'section' => 'theme_option_section_settings', 'choices' => array( 'excerpt-only' => __( 'Excerpt Only', 'blog-expert' ), 'full-post' => __( 'Full Post', 'blog-expert' ), ), 'type' => 'select', 'priority' => 180, ) ); /*Archive Layout image*/ $wp_customize->add_setting( 'archive_layout_image', array( 'default' => $default['archive_layout_image'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_select', ) ); $wp_customize->add_control( 'archive_layout_image', array( 'label' => esc_html__( 'Archive Image Alocation', 'blog-expert' ), 'section' => 'theme_option_section_settings', 'choices' => array( 'full' => __( 'Full', 'blog-expert' ), 'right' => __( 'Right', 'blog-expert' ), 'left' => __( 'Left', 'blog-expert' ), 'no-image' => __( 'No image', 'blog-expert' ) ), 'type' => 'select', 'priority' => 185, ) ); /*single post Layout image*/ $wp_customize->add_setting( 'single_post_image_layout', array( 'default' => $default['single_post_image_layout'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_select', ) ); $wp_customize->add_control( 'single_post_image_layout', array( 'label' => esc_html__( 'Single Post/Page Image Alocation', 'blog-expert' ), 'section' => 'theme_option_section_settings', 'choices' => array( 'full' => __( 'Full', 'blog-expert' ), 'right' => __( 'Right', 'blog-expert' ), 'left' => __( 'Left', 'blog-expert' ), 'no-image' => __( 'No image', 'blog-expert' ) ), 'type' => 'select', 'priority' => 190, ) ); // Pagination Section. $wp_customize->add_section( 'pagination_section', array( 'title' => __( 'Pagination Options', 'blog-expert' ), 'priority' => 110, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Setting pagination_type. $wp_customize->add_setting( 'pagination_type', array( 'default' => $default['pagination_type'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_select', ) ); $wp_customize->add_control( 'pagination_type', array( 'label' => __( 'Pagination Type', 'blog-expert' ), 'section' => 'pagination_section', 'type' => 'select', 'choices' => array( 'default' => __( 'Default (Older / Newer Post)', 'blog-expert' ), 'numeric' => __( 'Numeric', 'blog-expert' ), ), 'priority' => 100, ) ); // Footer Section. $wp_customize->add_section( 'footer_section', array( 'title' => __( 'Footer Options', 'blog-expert' ), 'priority' => 130, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Setting copyright_text. $wp_customize->add_setting( 'copyright_text', array( 'default' => $default['copyright_text'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'copyright_text', array( 'label' => __( 'Footer Copyright Text', 'blog-expert' ), 'section' => 'footer_section', 'type' => 'text', ) ); $wp_customize->add_setting( 'ed_footer_scroll_top_button', array( 'default' => $default['ed_footer_scroll_top_button'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_checkbox', ) ); $wp_customize->add_control( 'ed_footer_scroll_top_button', array( 'label' => __( 'Enable Scroll Top Button', 'blog-expert' ), 'section' => 'footer_section', 'type' => 'checkbox', ) ); // Breadcrumb Section. $wp_customize->add_section( 'breadcrumb_section', array( 'title' => __( 'Breadcrumb Options', 'blog-expert' ), 'priority' => 120, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Setting breadcrumb_type. $wp_customize->add_setting( 'breadcrumb_type', array( 'default' => $default['breadcrumb_type'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_select', ) ); $wp_customize->add_control( 'breadcrumb_type', array( 'label' => __( 'Breadcrumb Type', 'blog-expert' ), 'description' => sprintf( __( 'Advanced: Requires %1$sBreadcrumb NavXT%2$s plugin', 'blog-expert' ), '','' ), 'section' => 'breadcrumb_section', 'type' => 'select', 'choices' => array( 'disabled' => __( 'Disabled', 'blog-expert' ), 'simple' => __( 'Simple', 'blog-expert' ), 'advanced' => __( 'Advanced', 'blog-expert' ), ), 'priority' => 100, ) ); // Preloader Section. $wp_customize->add_section('enable_preloader_option', array( 'title' => __('Preloader Options', 'blog-expert'), 'priority' => 120, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Setting enable_preloader. $wp_customize->add_setting('enable_preloader', array( 'default' => $default['enable_preloader'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_checkbox', ) ); $wp_customize->add_control('enable_preloader', array( 'label' => __('Enable Preloader', 'blog-expert'), 'section' => 'enable_preloader_option', 'type' => 'checkbox', 'priority' => 150, ) ); $wp_customize->add_section('single_post_setting', array( 'title' => esc_html__('Single Posts', 'blog-expert'), 'priority' => 120, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); $wp_customize->add_setting('ed_floating_next_previous_nav', array( 'default' => $default['ed_floating_next_previous_nav'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blog_expert_sanitize_checkbox', ) ); $wp_customize->add_control('ed_floating_next_previous_nav', array( 'label' => esc_html__('Enable Fixed Floating Next/Previous Articles', 'blog-expert'), 'section' => 'single_post_setting', 'type' => 'checkbox', ) );