Hi @absoonoo,
You’d need to modify the capabilities of this role so that it doesn’t have the manage_options capability.
Failing that, you could change the capability that PostLockdown uses to determine whether a user can bypass protections with the postlockdown_admin_capability
filter, e.g:
add_filter('postlockdown_admin_capability', function() {
return 'some_new_capability';
});
I have used the User Role Editor plugin for managing user roles and capabilities in the past and it seemed to work pretty well.
-
This reply was modified 1 year, 11 months ago by andyexeter.