Skip to content

Instantly share code, notes, and snippets.

@nikitasinelnikov
Last active December 4, 2020 08:50
Show Gist options
  • Save nikitasinelnikov/400a0ae1dad787400c11f2ff669c569f to your computer and use it in GitHub Desktop.
Save nikitasinelnikov/400a0ae1dad787400c11f2ff669c569f to your computer and use it in GitHub Desktop.
Ultimate Member: How to add Phone Number field to User Account > General tab
function um_account_add_phone_number( $args, $shortcode_args ) {
$args .= ',phone_number';
return $args;
}
$args = add_filter( 'um_account_tab_general_fields', 'um_account_add_phone_number', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment