Skip to content

Instantly share code, notes, and snippets.

@kimcoleman
Created November 20, 2018 21:05
Show Gist options
  • Save kimcoleman/1bc0d27ecc781ed189052b422757a347 to your computer and use it in GitHub Desktop.
Save kimcoleman/1bc0d27ecc781ed189052b422757a347 to your computer and use it in GitHub Desktop.
Unset some contact methods that we won't use.
<?php
/*
* Unset some contact methods that we won't use.
*/
function my_edit_contactmethods( $contactmethods ) {
unset($contactmethods['yim']);
unset($contactmethods['aim']);
unset($contactmethods['jabber']);
return $contactmethods;
}
add_filter( 'user_contactmethods', 'my_edit_contactmethods', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment