selective_refresh ) ? 'postMessage' : 'refresh'; // Footer Panel // $wp_customize->add_panel( 'footer_section', array( 'priority' => 34, 'capability' => 'edit_theme_options', 'title' => __('Footer', 'artech'), ) ); /*========================================= Footer Above =========================================*/ $wp_customize->add_section( 'footer_above', array( 'title' => __('Footer Above','artech'), 'panel' => 'footer_section', 'priority' => 2, ) ); // hide/show $wp_customize->add_setting( 'hs_above_footer' , array( 'default' => '1', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_checkbox', 'priority' => 1, ) ); $wp_customize->add_control( 'hs_above_footer', array( 'label' => esc_html__( 'Hide/Show', 'artech' ), 'section' => 'footer_above', 'type' => 'checkbox' ) ); // Get In Touch Title $wp_customize->add_setting( 'footer_get_in_touch_title', array( 'default' => __('Call Us Now','artech'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_html', ) ); $wp_customize->add_control( 'footer_get_in_touch_title', array( 'label' => __('Get In Touch Title','artech'), 'section' => 'footer_above', 'type' => 'text', ) ); // Get In Touch Link $wp_customize->add_setting( 'footer_get_in_touch_number', array( 'default' => __('+12 345 678 90','artech'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_html', ) ); $wp_customize->add_control( 'footer_get_in_touch_number', array( 'label' => __('Get In Touch Number','artech'), 'section' => 'footer_above', 'type' => 'text', ) ); // icon // $wp_customize->add_setting( 'footer_get_in_touch_icon', array( 'default' => 'fa-phone', 'sanitize_callback' => 'sanitize_text_field', 'capability' => 'edit_theme_options', 'priority' => 4, ) ); $wp_customize->add_control(new Artech_Icon_Picker_Control($wp_customize, 'footer_get_in_touch_icon', array( 'label' => __('Icon','artech'), 'section' => 'footer_above', 'iconset' => 'fa', )) ); // Address Title $wp_customize->add_setting( 'footer_address_title', array( 'default' => __('Location','artech'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_html', ) ); $wp_customize->add_control( 'footer_address_title', array( 'label' => __('Address Title','artech'), 'section' => 'footer_above', 'type' => 'text', ) ); // Get In Touch Link $wp_customize->add_setting( 'footer_contact_address', array( 'default' => __('St Klida Main Road','artech'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_html', ) ); $wp_customize->add_control( 'footer_contact_address', array( 'label' => __('Location','artech'), 'section' => 'footer_above', 'type' => 'text', ) ); // icon // $wp_customize->add_setting( 'footer_contct_icon', array( 'default' => 'fa-map-marker', 'sanitize_callback' => 'sanitize_text_field', 'capability' => 'edit_theme_options', 'priority' => 4, ) ); $wp_customize->add_control(new Artech_Icon_Picker_Control($wp_customize, 'footer_contct_icon', array( 'label' => __('Icon','artech'), 'section' => 'footer_above', 'iconset' => 'fa', )) ); // office hours Title $wp_customize->add_setting( 'footer_office_hours_title', array( 'default' => __('Working Hours','artech'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_html', ) ); $wp_customize->add_control( 'footer_office_hours_title', array( 'label' => __('Office Hours Title','artech'), 'section' => 'footer_above', 'type' => 'text', ) ); // Email Description $wp_customize->add_setting( 'footer_office_hours', array( 'default' => __('Mon To Sat 10AM To 7PM Sunday close','artech'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_html', ) ); $wp_customize->add_control( 'footer_office_hours', array( 'label' => __('Office Hours','artech'), 'section' => 'footer_above', 'type' => 'text', ) ); // icon // $wp_customize->add_setting( 'footer_office_hours_icon', array( 'default' => 'fa-clock-o', 'sanitize_callback' => 'sanitize_text_field', 'capability' => 'edit_theme_options', 'priority' => 4, ) ); $wp_customize->add_control(new Artech_Icon_Picker_Control($wp_customize, 'footer_office_hours_icon', array( 'label' => __('Office Hours Icon','artech'), 'section' => 'footer_above', 'iconset' => 'fa', )) ); // Footer Setting Section // $wp_customize->add_section( 'footer_copy_Section', array( 'title' => __('Below Footer','artech'), 'panel' => 'footer_section', 'priority' => 4, ) ); // footer third text // $artech_footer_copyright = esc_html__('Copyright © [current_year] [site_title] | Powered by [theme_author]', 'artech' ); $wp_customize->add_setting( 'footer_third_custom', array( 'default' => $artech_footer_copyright, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_html', ) ); $wp_customize->add_control( 'footer_third_custom', array( 'label' => __('Copyright Text','artech'), 'section' => 'footer_copy_Section', 'type' => 'textarea', 'priority' => 9, ) ); // Footer Background // $wp_customize->add_section( 'footer_background', array( 'title' => __('Footer Background','artech'), 'panel' => 'footer_section', 'priority' => 4, ) ); // Footer Setting Section // $wp_customize->add_section( 'footer_copy_Section', array( 'title' => __('Below Footer','artech'), 'panel' => 'footer_section', 'priority' => 4, ) ); // Color $wp_customize->add_setting( 'footer_bg_color', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', 'default' => '#0d0c44' )); $wp_customize->add_control( new WP_Customize_Color_Control ($wp_customize, 'footer_bg_color', array( 'label' => __( 'Background Color', 'artech' ), 'section' => 'footer_background', ) ) ); } add_action( 'customize_register', 'artech_footer' ); // Footer selective refresh function artech_footer_partials( $wp_customize ){ //footer_above_content $wp_customize->selective_refresh->add_partial( 'footer_above_content', array( 'selector' => '.footer-above', ) ); // footer_third_custom $wp_customize->selective_refresh->add_partial( 'footer_third_custom', array( 'selector' => '.footer-copyright .copyright-text', 'settings' => 'footer_third_custom', 'render_callback' => 'artech_footer_third_custom_render_callback', ) ); } add_action( 'customize_register', 'artech_footer_partials' ); // copyright_content function artech_footer_third_custom_render_callback() { return get_theme_mod( 'footer_third_custom' ); }