selective_refresh ) ? 'postMessage' : 'refresh'; /*========================================= Social Media =========================================*/ $wp_customize->add_section( 'automotive_services_social_media_header', array( 'priority' => 3, 'title' => __('Social Media','automotive-services'), 'panel' => 'header_section', ) ); $wp_customize->add_setting( 'automotive_services_social_media_facebook', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'automotive_services_social_media_facebook', array( 'label' => __('Facebook URL','automotive-services'), 'section' => 'automotive_services_social_media_header', 'type' => 'url', 'transport' => $selective_refresh, ) ); $wp_customize->add_setting( 'automotive_services_social_media_twitter', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'automotive_services_social_media_twitter', array( 'label' => __('Twitter URL','automotive-services'), 'section' => 'automotive_services_social_media_header', 'type' => 'url', 'transport' => $selective_refresh, ) ); $wp_customize->add_setting( 'automotive_services_social_media_instagram', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'automotive_services_social_media_instagram', array( 'label' => __('Instagram URL','automotive-services'), 'section' => 'automotive_services_social_media_header', 'type' => 'url', 'transport' => $selective_refresh, ) ); $wp_customize->add_setting( 'automotive_services_social_media_youtube', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'automotive_services_social_media_youtube', array( 'label' => __('Youtube URL','automotive-services'), 'section' => 'automotive_services_social_media_header', 'type' => 'url', 'transport' => $selective_refresh, ) ); } add_action( 'customize_register', 'automotive_services_social_media_header_settings' );