Created
November 25, 2025 06:40
-
-
Save propertyhive/1f6ccf07db4205f49bb3b6db168eedc4 to your computer and use it in GitHub Desktop.
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( 'propertyhive_microsoft_graph_event_negotiator_ids', 'only_certain_members', 10, 2 ); | |
| function only_certain_members( $attending_wordpress_user_ids, $post_id ) | |
| { | |
| if ( empty($attending_wordpress_user_ids) ) | |
| { | |
| $attending_wordpress_user_ids = array(1, 2, 3, 4); // CHANGE THIS!! | |
| } | |
| return $attending_wordpress_user_ids; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment