Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Last active April 12, 2016 20:30
Show Gist options
  • Save fdaciuk/d86831dbead5978829ab to your computer and use it in GitHub Desktop.
Save fdaciuk/d86831dbead5978829ab 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