Last active
April 12, 2016 20:30
-
-
Save fdaciuk/d86831dbead5978829ab to your computer and use it in GitHub Desktop.
Adicionar mais campos no perfil de usuário do WordPress
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 | |
add_filter( 'user_contactmethods', 'add_new_user_fields' ); | |
function add_new_user_fields( $user_contact ) { | |
$user_contact[ 'billing_cel_phone' ] = 'Celular'; | |
return $user_contact; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment