This filter hook allows you to change the meta data of user.
If you want to remove any from default or add new field, this hook will allow you to change the fields.
add_filter( 'ualp_user_meta_array', 'my_primary_array' ); function my_primary_array( $get_dafault_user_meta_key_array ) { // remove description from log if (($key = array_search('description', $get_dafault_user_meta_key_array)) !== false) { unset($get_dafault_user_meta_key_array[$key]); } // add google_profile_id in log $get_dafault_user_meta_key_array[] = 'google_profile_id'; //return array return $get_dafault_user_meta_key_array; }