Skip to content

Instantly share code, notes, and snippets.

@digamber89
Created November 3, 2020 11:23
Show Gist options
  • Save digamber89/cc840dab767aef7835232129d056a509 to your computer and use it in GitHub Desktop.
Save digamber89/cc840dab767aef7835232129d056a509 to your computer and use it in GitHub Desktop.
Add Your User ID
add_filter( 'vczapi_users_list', 'vczapi_my_additional_users' );
function vczapi_my_additional_users( $users ) {
$obj = ( object) [
'id' => 'your_host_id_here',
'first_name' => 'your_first_name',
'last_name' => 'your_last_name',
'email' => 'your_email_address'
];
$users[] = $obj;
return $users;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment