Created
November 3, 2020 11:23
-
-
Save digamber89/cc840dab767aef7835232129d056a509 to your computer and use it in GitHub Desktop.
Add Your User ID
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
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