Skip to content

Instantly share code, notes, and snippets.

@BenSibley
Created November 30, 2016 13:36
Show Gist options
  • Save BenSibley/b527b425f367f80c27d58a2713a65eb6 to your computer and use it in GitHub Desktop.
Save BenSibley/b527b425f367f80c27d58a2713a65eb6 to your computer and use it in GitHub Desktop.
Social media icons array
function ct_tribes_social_array() {
$social_sites = array(
'twitter' => 'tribes_twitter_profile',
'facebook' => 'tribes_facebook_profile',
'google-plus' => 'tribes_googleplus_profile',
'pinterest' => 'tribes_pinterest_profile',
'linkedin' => 'tribes_linkedin_profile',
'youtube' => 'tribes_youtube_profile',
'vimeo' => 'tribes_vimeo_profile',
'tumblr' => 'tribes_tumblr_profile',
'instagram' => 'tribes_instagram_profile',
'flickr' => 'tribes_flickr_profile',
'dribbble' => 'tribes_dribbble_profile',
'rss' => 'tribes_rss_profile',
'reddit' => 'tribes_reddit_profile',
'soundcloud' => 'tribes_soundcloud_profile',
'spotify' => 'tribes_spotify_profile',
'vine' => 'tribes_vine_profile',
'yahoo' => 'tribes_yahoo_profile',
'behance' => 'tribes_behance_profile',
'codepen' => 'tribes_codepen_profile',
'delicious' => 'tribes_delicious_profile',
'stumbleupon' => 'tribes_stumbleupon_profile',
'deviantart' => 'tribes_deviantart_profile',
'digg' => 'tribes_digg_profile',
'github' => 'tribes_github_profile',
'hacker-news' => 'tribes_hacker-news_profile',
'steam' => 'tribes_steam_profile',
'vk' => 'tribes_vk_profile',
'weibo' => 'tribes_weibo_profile',
'tencent-weibo' => 'tribes_tencent_weibo_profile',
'500px' => 'tribes_500px_profile',
'foursquare' => 'tribes_foursquare_profile',
'slack' => 'tribes_slack_profile',
'slideshare' => 'tribes_slideshare_profile',
'qq' => 'tribes_qq_profile',
'whatsapp' => 'tribes_whatsapp_profile',
'skype' => 'tribes_skype_profile',
'wechat' => 'tribes_wechat_profile',
'xing' => 'tribes_xing_profile',
'paypal' => 'tribes_paypal_profile',
'email-form' => 'tribes_email_form_profile'
);
return apply_filters( 'ct_tribes_social_array_filter', $social_sites );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment