Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created November 25, 2025 06:40
Show Gist options
  • Select an option

  • Save propertyhive/1f6ccf07db4205f49bb3b6db168eedc4 to your computer and use it in GitHub Desktop.

Select an option

Save propertyhive/1f6ccf07db4205f49bb3b6db168eedc4 to your computer and use it in GitHub Desktop.
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