selective_refresh ) ? 'postMessage' : 'refresh'; $wp_customize->add_panel( 'artech_general', array( 'priority' => 31, 'title' => esc_html__( 'General', 'artech' ), ) ); /*========================================= Preloader =========================================*/ $wp_customize->add_section( 'preloader', array( 'title' => esc_html__( 'Preloader', 'artech' ), 'priority' => 1, 'panel' => 'artech_general', ) ); $wp_customize->add_setting( 'hs_preloader' , array( 'default' => '', 'sanitize_callback' => 'artech_sanitize_checkbox', 'capability' => 'edit_theme_options', 'priority' => 1, ) ); $wp_customize->add_control( 'hs_preloader', array( 'label' => esc_html__( 'Hide / Show Preloader', 'artech' ), 'section' => 'preloader', 'type' => 'checkbox' ) ); /*========================================= Scroller =========================================*/ $wp_customize->add_section( 'top_scroller', array( 'title' => esc_html__( 'Top Scroller', 'artech' ), 'priority' => 4, 'panel' => 'artech_general', ) ); $wp_customize->add_setting( 'hs_scroller' , array( 'default' => '1', 'sanitize_callback' => 'artech_sanitize_checkbox', 'capability' => 'edit_theme_options', 'priority' => 1, ) ); $wp_customize->add_control( 'hs_scroller', array( 'label' => esc_html__( 'Hide / Show Scroller', 'artech' ), 'section' => 'top_scroller', 'type' => 'checkbox' ) ); /*========================================= Breadcrumb Section =========================================*/ $wp_customize->add_section( 'breadcrumb_setting', array( 'title' => esc_html__( 'Page Breadcrumb', 'artech' ), 'priority' => 12, 'panel' => 'artech_general', ) ); // Settings $wp_customize->add_setting( 'breadcrumb_settings' ,array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_text', 'priority' => 1, ) ); $wp_customize->add_control( 'breadcrumb_settings', array( 'type' => 'hidden', 'label' => __('Settings','artech'), 'section' => 'breadcrumb_setting', ) ); // Breadcrumb Hide/ Show Setting // $wp_customize->add_setting( 'hs_breadcrumb' , array( 'default' => '1', 'sanitize_callback' => 'artech_sanitize_checkbox', 'capability' => 'edit_theme_options', 'priority' => 2, ) ); $wp_customize->add_control( 'hs_breadcrumb', array( 'label' => esc_html__( 'Hide / Show Section', 'artech' ), 'section' => 'breadcrumb_setting', 'settings' => 'hs_breadcrumb', 'type' => 'checkbox' ) ); // Background Image // $wp_customize->add_setting( 'breadcrumb_bg_img' , array( 'default' => get_template_directory_uri() .'/assets/images/ft-1.jpg', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_url', 'priority' => 10, ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize , 'breadcrumb_bg_img' , array( 'label' => esc_html__( 'Background Image', 'artech'), 'section' => 'breadcrumb_setting', ) )); } add_action( 'customize_register', 'artech_genearl_setting' );