Skip to content

Instantly share code, notes, and snippets.

@mauriciogofas
Last active August 29, 2015 14:14
Show Gist options
  • Save mauriciogofas/d5c27072b6fa3ccb9671 to your computer and use it in GitHub Desktop.
Save mauriciogofas/d5c27072b6fa3ccb9671 to your computer and use it in GitHub Desktop.
Remove campos do perfil wp-admin
<?php
// Remove campos do perfil wp-admin
function remove_contactmethod( $contactmethods ) {
unset($contactmethods['aim']);
unset($contactmethods['jabber']);
unset($contactmethods['yim']);
return $contactmethods;
}
add_filter('user_contactmethods','remove_contactmethod',10,1);
// fim Remove coisas do perfil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment