Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action('user_contactmethods', function ($socials) {
- $unsets = array(
- 'facebook' => 'Facebook',
- 'twitter' => 'Twitter',
- 'linkedin' => 'Linkedin',
- 'pinterest' => 'Pinterest',
- 'behance' => 'Behance',
- 'github' => 'Github',
- 'flickr' => 'Flickr',
- 'tumblr' => 'Tumblr',
- 'dribbble' => 'Dribbble',
- 'soundcloud' => 'Soundcloud',
- 'instagram' => 'Instagram',
- 'vimeo' => 'Vimeo',
- 'youtube' => 'Youtube',
- 'reddit' => 'Reddit',
- 'vk' => 'Vk',
- 'weibo' => 'Weibo',
- 'rss' => 'Rss',
- );
- foreach ( $unsets as $unset => $value ) {
- unset($socials[$unset]);
- }
- return $socials;
- },999);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement