'twitter_profile', 'facebook' => 'facebook_profile', 'instagram' => 'instagram_profile', 'linkedin' => 'linkedin_profile', 'pinterest' => 'pinterest_profile', 'youtube' => 'youtube_profile', 'rss' => 'rss_profile', 'email' => 'email_profile', 'phone' => 'phone_profile', 'email-form' => 'email_form_profile', 'artstation' => 'artstation_profile', 'amazon' => 'amazon_profile', 'bandcamp' => 'bandcamp_profile', 'behance' => 'behance_profile', 'bitbucket' => 'bitbucket_profile', 'codepen' => 'codepen_profile', 'delicious' => 'delicious_profile', 'deviantart' => 'deviantart_profile', 'digg' => 'digg_profile', 'discord' => 'discord_profile', 'dribbble' => 'dribbble_profile', 'etsy' => 'etsy_profile', 'flickr' => 'flickr_profile', 'foursquare' => 'foursquare_profile', 'github' => 'github_profile', 'goodreads' => 'goodreads_profile', 'google-wallet' => 'google_wallet_profile', 'hacker-news' => 'hacker-news_profile', 'medium' => 'medium_profile', 'meetup' => 'meetup_profile', 'mixcloud' => 'mixcloud_profile', 'ok-ru' => 'ok_ru_profile', 'patreon' => 'patreon_profile', 'paypal' => 'paypal_profile', 'podcast' => 'podcast_profile', 'qq' => 'qq_profile', 'quora' => 'quora_profile', 'ravelry' => 'ravelry_profile', 'reddit' => 'reddit_profile', 'skype' => 'skype_profile', 'slack' => 'slack_profile', 'slideshare' => 'slideshare_profile', 'soundcloud' => 'soundcloud_profile', 'spotify' => 'spotify_profile', 'snapchat' => 'snapchat_profile', 'stack-overflow' => 'stack_overflow_profile', 'steam' => 'steam_profile', 'stumbleupon' => 'stumbleupon_profile', 'telegram' => 'telegram_profile', 'tencent-weibo' => 'tencent_weibo_profile', 'tumblr' => 'tumblr_profile', 'twitch' => 'twitch_profile', 'vimeo' => 'vimeo_profile', 'vine' => 'vine_profile', 'vk' => 'vk_profile', 'wechat' => 'wechat_profile', 'weibo' => 'weibo_profile', 'whatsapp' => 'whatsapp_profile', 'xing' => 'xing_profile', 'yahoo' => 'yahoo_profile', 'yelp' => 'yelp_profile', '500px' => '500px_profile' ); return apply_filters( 'ct_tracks_social_array_filter', $social_sites ); } } function ct_tracks_add_social_profile_settings( $user ) { $social_sites = ct_tracks_social_array(); $user_id = get_current_user_id(); // only added for contributors and above if ( ! current_user_can( 'edit_posts', $user_id ) ) { return false; } ?> $social_site ) { $label = ucfirst( $key ); if ( $key == 'google-plus' ) { $label = __('Google Plus', 'tracks'); } elseif ( $key == 'rss' ) { $label = __('RSS', 'tracks'); } elseif ( $key == 'soundcloud' ) { $label = __('SoundCloud', 'tracks'); } elseif ( $key == 'slideshare' ) { $label = __('SlideShare', 'tracks'); } elseif ( $key == 'codepen' ) { $label = __('CodePen', 'tracks'); } elseif ( $key == 'stumbleupon' ) { $label = __('StumbleUpon', 'tracks'); } elseif ( $key == 'deviantart' ) { $label = __('DeviantArt', 'tracks'); } elseif ( $key == 'google-wallet' ) { $label = __('Google Wallet', 'tracks'); } elseif ( $key == 'hacker-news' ) { $label = __('Hacker News', 'tracks'); } elseif ( $key == 'whatsapp' ) { $label = __('WhatsApp', 'tracks'); } elseif ( $key == 'qq' ) { $label = __('QQ', 'tracks'); } elseif ( $key == 'vk' ) { $label = __('VK', 'tracks'); } elseif ( $key == 'ok-ru' ) { $label = __('OK.ru', 'tracks'); } elseif ( $key == 'wechat' ) { $label = __('WeChat', 'tracks'); } elseif ( $key == 'tencent-weibo' ) { $label = __('Tencent Weibo', 'tracks'); } elseif ( $key == 'paypal' ) { $label = __('PayPal', 'tracks'); } elseif ( $key == 'stack-overflow' ) { $label = __('Stack Overflow', 'tracks'); } elseif ( $key == 'email-form' ) { $label = __('Contact Form', 'tracks'); } elseif ( $key == 'artstation' ) { $label = __('ArtStation', 'tracks'); } ?>

'/>
$social_site ) { if ( $key == 'email' ) { // if email, only accept 'mailto' protocol if ( isset( $_POST["$key-profile"] ) ) { update_user_meta( $user_id, $social_site, sanitize_email( $_POST["$key-profile"] ) ); } } elseif ( $key == 'phone' ) { // if phone, only accept 'tel' protocol if ( isset( $_POST["$key-profile"] ) ) { if ( $_POST["$key-profile"] == '' ) { update_user_meta( $user_id, $social_site, '' ); } else { update_user_meta( $user_id, $social_site, esc_url_raw( 'tel:' . $_POST["$key-profile"], array( 'tel' ) ) ); } } } else { if ( isset( $_POST["$key-profile"] ) ) { update_user_meta( $user_id, $social_site, esc_url_raw( $_POST["$key-profile"] ) ); } } } } add_action( 'personal_options_update', 'ct_tracks_save_social_profiles' ); add_action( 'edit_user_profile_update', 'ct_tracks_save_social_profiles' );