Skip to content

Instantly share code, notes, and snippets.

@romuloctba
Forked from fdaciuk/functions.php
Created April 12, 2016 20:30
Show Gist options
  • Save romuloctba/7d664a5dc69680c368d1e72a287ba3ae to your computer and use it in GitHub Desktop.
Save romuloctba/7d664a5dc69680c368d1e72a287ba3ae to your computer and use it in GitHub Desktop.
Adicionar mais campos no perfil de usuário do WordPress
<?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