diff --git a/src/wp-admin/includes/class-wp-comments-list-table.php b/src/wp-admin/includes/class-wp-comments-list-table.php index e7707daba9..c4d323cf89 100644 --- a/src/wp-admin/includes/class-wp-comments-list-table.php +++ b/src/wp-admin/includes/class-wp-comments-list-table.php @@ -357,6 +357,10 @@ class WP_Comments_List_Table extends WP_List_Table { protected function get_bulk_actions() { global $comment_status; + if ( ! current_user_can( 'moderate_comments' ) ) { + return array(); // Return an empty array if the user doesn't have permission + } + $actions = array(); if ( in_array( $comment_status, array( 'all', 'approved' ), true ) ) {