Created
November 20, 2018 21:05
-
-
Save kimcoleman/1bc0d27ecc781ed189052b422757a347 to your computer and use it in GitHub Desktop.
Unset some contact methods that we won't use.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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