Last active
December 4, 2020 08:50
-
-
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
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
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