add_section( 'custom_social_section', array( 'title' => __( 'Social networks', 'cameleon' ), 'priority' => 21, 'capability' => 'edit_theme_options', 'description' => __('Links to your social profiles', 'cameleon'), 'colors' => 'red', ) ); ///////////////////////////////////////////////// ///////////////////////////////////////////////// // Setting Facebook ///////////////////////////////////////////////// ///////////////////////////////////////////////// $wp_customize->add_setting( 'custom_facebook_link', array( 'default' => '', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'cameleon_social_sanitize_url' ) ); $wp_customize->add_control( 'cameleon_custom_facebook_link', array( 'label' => __( 'Facebook page', 'cameleon' ), 'section' => 'custom_social_section', 'settings' => 'custom_facebook_link', 'priority' => 10, 'type' => 'text', ) ); ///////////////////////////////////////////////// ///////////////////////////////////////////////// // Setting Twitter ///////////////////////////////////////////////// ///////////////////////////////////////////////// $wp_customize->add_setting( 'custom_twitter_link', array( 'default' => '', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'cameleon_social_sanitize_url', ) ); $wp_customize->add_control( 'cameleon_custom_twitter_link', array( 'label' => __( 'Twitter profile', 'cameleon' ), 'section' => 'custom_social_section', 'settings' => 'custom_twitter_link', 'priority' => 10, 'type' => 'text', ) ); ///////////////////////////////////////////////// ///////////////////////////////////////////////// // Setting YouTube ///////////////////////////////////////////////// ///////////////////////////////////////////////// $wp_customize->add_setting( 'custom_youtube_link', array( 'default' => '', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'cameleon_social_sanitize_url', ) ); $wp_customize->add_control( 'cameleon_custom_youtube_link', array( 'label' => __( 'YouTube channel', 'cameleon' ), 'section' => 'custom_social_section', 'settings' => 'custom_youtube_link', 'priority' => 10, 'type' => 'text', ) ); ///////////////////////////////////////////////// ///////////////////////////////////////////////// // Setting Google+ ///////////////////////////////////////////////// ///////////////////////////////////////////////// $wp_customize->add_setting( 'custom_googleplus_link', array( 'default' => '', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'cameleon_social_sanitize_url', ) ); $wp_customize->add_control( 'cameleon_custom_googleplus_link', array( 'label' => __( 'Google+ page', 'cameleon' ), 'section' => 'custom_social_section', 'settings' => 'custom_googleplus_link', 'priority' => 10, 'type' => 'text', ) ); ///////////////////////////////////////////////// ///////////////////////////////////////////////// // Setting Instagram ///////////////////////////////////////////////// ///////////////////////////////////////////////// $wp_customize->add_setting( 'custom_instagram_link', array( 'default' => '', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'cameleon_social_sanitize_url', ) ); $wp_customize->add_control( 'cameleon_custom_instagram_link', array( 'label' => __( 'Instagram profile', 'cameleon' ), 'section' => 'custom_social_section', 'settings' => 'custom_instagram_link', 'priority' => 10, 'type' => 'text', ) ); ///////////////////////////////////////////////// ///////////////////////////////////////////////// // Setting LinkedIn ///////////////////////////////////////////////// ///////////////////////////////////////////////// $wp_customize->add_setting( 'custom_linkedin_link', array( 'default' => '', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'cameleon_social_sanitize_url', ) ); $wp_customize->add_control( 'cameleon_custom_linkedin_link', array( 'label' => __( 'LinkedIn profile', 'cameleon' ), 'section' => 'custom_social_section', 'settings' => 'custom_linkedin_link', 'priority' => 10, 'type' => 'text', ) ); ///////////////////////////////////////////////// ///////////////////////////////////////////////// // Setting Pinterest ///////////////////////////////////////////////// ///////////////////////////////////////////////// $wp_customize->add_setting( 'custom_pinterest_link', array( 'default' => '', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'cameleon_social_sanitize_url', ) ); $wp_customize->add_control( 'cameleon_custom_pinterest_link', array( 'label' => __( 'Pinterest board', 'cameleon' ), 'section' => 'custom_social_section', 'settings' => 'custom_pinterest_link', 'priority' => 10, 'type' => 'text', ) ); } public static function header_output() { ?>