Remove the WordPress update notices for specific user roles.
✓ Supports multiple instances.
intervention('remove-update-notices', $roles(string|array));
$roles: all-not-admin
$roles: all, all-not-admin, admin, editor, author, contributor, subscriber
intervention('remove-update-notices');
// Removes update notices for user roles all-not-admin.
intervention('remove-update-notices', 'editor');
// Removes update notices for user role editor.
intervention('remove-update-notices', ['editor', 'author']);
// Removes update notices for user roles editor and author.